From 9998a5eb90b16ca4c5ea06f175a105d8cddc2078 Mon Sep 17 00:00:00 2001 From: jmug Date: Fri, 27 Feb 2026 22:21:23 -0800 Subject: [PATCH] [chore] Expose pkgs-unstable in nixbox configuration. --- flake.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 7c77529..fc41b70 100644 --- a/flake.nix +++ b/flake.nix @@ -140,7 +140,14 @@ } ]; }; - nixbox = nixpkgs.lib.nixosSystem { + nixbox = let + pkgs-unstable_x86_64-linux = import nixpkgs-unstable { + system = "x86_64-linux"; + config = { + allowUnfree = true; + }; + }; + in nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit inputs ghostty; @@ -150,6 +157,7 @@ home-manager.nixosModules.home-manager ({config, ...}: { home-manager.extraSpecialArgs = { + pkgs-unstable = pkgs-unstable_x86_64-linux; inherit inputs; inherit ssh-agent-switcher; inherit (config) user;