From 9ace5e7cd8d1bfe08ef72836e2fddd574e2b26af 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 = {