From 5905dcd81cb55b923a881b43fba213031d326c3c Mon Sep 17 00:00:00 2001 From: kenny Date: Wed, 6 Aug 2025 19:52:37 +0300 Subject: [PATCH] fixing call to insecure python --- hosts/puter/hardware-configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/puter/hardware-configuration.nix b/hosts/puter/hardware-configuration.nix index f18af31..fc695cf 100644 --- a/hosts/puter/hardware-configuration.nix +++ b/hosts/puter/hardware-configuration.nix @@ -83,6 +83,6 @@ nixpkgs.config.allowInsecurePredicate = pkg: builtins.elem (lib.getName pkg) [ "broadcom-sta" # aka “wl” - "python2.7" + "python" ]; }