[chore] Expose pkgs-unstable in nixbox configuration.
This commit is contained in:
@@ -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";
|
system = "x86_64-linux";
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs ghostty;
|
inherit inputs ghostty;
|
||||||
@@ -150,6 +157,7 @@
|
|||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
({config, ...}: {
|
({config, ...}: {
|
||||||
home-manager.extraSpecialArgs = {
|
home-manager.extraSpecialArgs = {
|
||||||
|
pkgs-unstable = pkgs-unstable_x86_64-linux;
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
inherit ssh-agent-switcher;
|
inherit ssh-agent-switcher;
|
||||||
inherit (config) user;
|
inherit (config) user;
|
||||||
|
|||||||
Reference in New Issue
Block a user