diff --git a/flake.nix b/flake.nix index 7bbe528..7163fc2 100644 --- a/flake.nix +++ b/flake.nix @@ -59,6 +59,17 @@ inherit system; config.allowUnfree = true; }; + + fastPython3 = self.python3.override { + enableOptimizations = true; + reproducibleBuild = false; + self = self.fastPython3; + pythonAttr = "fastPython3"; + }; + + matrix-synapse = super.matrix-synapse.override { + python3 = self.fastPython3; + }; }) ]; }