From 4bbf21eff8a968723a83ee9301569e5069a558e4 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 26 Aug 2021 12:59:19 +0200 Subject: [PATCH] flake: remove custom python overlay for poseidon That was fun but build time was too long, not worth it --- flake.nix | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/flake.nix b/flake.nix index 8719c74..2363356 100644 --- a/flake.nix +++ b/flake.nix @@ -84,23 +84,6 @@ inherit system; modules = [ ./poseidon.nix - - { - nixpkgs.overlays = [ - (self: super: { - fastPython3 = self.python3.override { - enableOptimizations = true; - reproducibleBuild = false; - self = self.fastPython3; - pythonAttr = "fastPython3"; - }; - - matrix-synapse = super.matrix-synapse.override { - python3 = self.fastPython3; - }; - }) - ]; - } ] ++ sharedModules; };