From 658bf36861e67cb020b7a5d2309993c40f1779ff Mon Sep 17 00:00:00 2001 From: Benson Chu Date: Sat, 11 Apr 2026 19:11:54 -0500 Subject: [PATCH] unstablePkgs should allow unfree --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 4b95516..15d11a4 100644 --- a/flake.nix +++ b/flake.nix @@ -16,7 +16,7 @@ let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; - unstablePkgs = unstable.legacyPackages.${system}; + unstablePkgs = import unstable { inherit system; config.allowUnfree = true; }; updatePkgs = import update { inherit system; config.allowUnfree = true; }; in { nixosConfigurations = {