mitigations: patch matrix-synapse

This commit is contained in:
Daniel Olsen
2026-07-28 17:36:31 +02:00
parent 6ed3f1d269
commit e2567e78cf
2 changed files with 30 additions and 16 deletions
+14
View File
@@ -21,4 +21,18 @@ in
boot.blacklistedKernelModules = modulesToBan;
boot.extraModprobeConfig = lib.concatMapStringsSep "\n" (mod: "install ${mod} ${lib.getExe' pkgs.coreutils "false"}") modulesToBan;
nixpkgs.overlays = [
(final: prev: {
matrix-synapse-unwrapped = prev.matrix-synapse-unwrapped.overrideAttrs (old: rec {
version = "1.157.2";
src = final.fetchFromGitHub {
owner = "element-hq";
repo = "synapse";
rev = "v${version}";
hash = "sha256-TUHcNAXrV43+J7jqfstlYdrZrwL5kDCh03yxO+vL/gw=";
};
});
})
];
}