summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2025-01-06 14:30:22 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2025-01-06 14:30:22 +0100
commit6e1a856a2233539cc9c57529d4b20214bea78b16 (patch)
tree45936253ef4fba755fcd258a8dc0953abe23ae68
parent7da07a5e1ff80d603163e660cfd6a4057e54f864 (diff)
downloadnixos-6e1a856a2233539cc9c57529d4b20214bea78b16.tar
nixos-6e1a856a2233539cc9c57529d4b20214bea78b16.tar.gz
nixos-6e1a856a2233539cc9c57529d4b20214bea78b16.tar.bz2
nixos-6e1a856a2233539cc9c57529d4b20214bea78b16.tar.xz
nixos-6e1a856a2233539cc9c57529d4b20214bea78b16.zip
-rw-r--r--flake.lock6
-rw-r--r--overlays/matrix-synapse.nix4
2 files changed, 7 insertions, 3 deletions
diff --git a/flake.lock b/flake.lock
index ad8b803f..f379dac0 100644
--- a/flake.lock
+++ b/flake.lock
@@ -603,11 +603,11 @@
603 }, 603 },
604 "nixpkgs_2": { 604 "nixpkgs_2": {
605 "locked": { 605 "locked": {
606 "lastModified": 1736013918, 606 "lastModified": 1736167739,
607 "narHash": "sha256-5nGpp/IkUczGOu/flzHO+C05K3QljD5KuQUS/c2ZjUY=", 607 "narHash": "sha256-IWir2Srf07xHsdf9WnLtaqPgL+CfS6tiZ9N/I+qbneE=",
608 "owner": "gkleen", 608 "owner": "gkleen",
609 "repo": "nixpkgs", 609 "repo": "nixpkgs",
610 "rev": "3a711bcb55711f7ed475c618e77c45e69a54732d", 610 "rev": "a89c52fb11e656bbef04452a29eb0cd6cb6272c0",
611 "type": "github" 611 "type": "github"
612 }, 612 },
613 "original": { 613 "original": {
diff --git a/overlays/matrix-synapse.nix b/overlays/matrix-synapse.nix
new file mode 100644
index 00000000..59b2c6da
--- /dev/null
+++ b/overlays/matrix-synapse.nix
@@ -0,0 +1,4 @@
1{ final, prev, ... }:
2{
3 matrix-synapse-unwrapped = prev.matrix-synapse-unwrapped.overridePythonAttrs { doCheck = false; };
4}