From a8233a2e835d472db79a40b403a8088848feb547 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Tue, 23 May 2023 14:34:02 -0400 Subject: [PATCH] Add Python2.7 to Permittedinsecurepackages --- flake.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flake.nix b/flake.nix index 2928fff..37622ea 100644 --- a/flake.nix +++ b/flake.nix @@ -13,6 +13,9 @@ pkgs = import nixpkgs { inherit system; config.allowAliases = false; + config.permittedInsecurePackages = [ + "python-2.7.18.6-env" + ]; overlays = [ self.overlays.default ]; }; inherit (pkgs) lib;