h: add overlay for latest synapse

This commit is contained in:
Aaron Bieber 2022-09-13 08:13:28 -06:00
parent f69f3975c6
commit 911ca17a82
No known key found for this signature in database
2 changed files with 17 additions and 1 deletions

View File

@ -16,7 +16,11 @@ let
in {
_module.args.isUnstable = true;
imports = [ ./hardware-configuration.nix ../../modules/gotosocial.nix ];
imports = [
./hardware-configuration.nix
../../modules/gotosocial.nix
../../overlays/default.nix
];
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;

View File

@ -2,6 +2,18 @@
{
nixpkgs.overlays = if isUnstable then [
(self: super: {
matrix-synapse = super.matrix-synapse.overrideAttrs (old: {
version = "1.67.0";
src = super.python3.pkgs.fetchPypi {
pname = "matrix-synapse";
version = "1.67.0";
sha256 = "sha256-86KVu1wUkVy1/mONVbDM1g+Y+Kh90y1rpf58Kc2VtBY=";
};
});
})
# pr:190714
(self: super: {
nheko = super.nheko.overrideAttrs (old: {