h: add overlay for latest synapse
This commit is contained in:
parent
f69f3975c6
commit
911ca17a82
@ -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;
|
||||
|
@ -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: {
|
||||
|
Loading…
Reference in New Issue
Block a user