Adding unstable to pkgs.unstable and try apply it at runtime

This commit is contained in:
2022-12-19 22:42:15 +01:00
parent d52a7295b5
commit c3d6e55a63
5 changed files with 42 additions and 25 deletions

View File

@@ -22,8 +22,9 @@
nixosConfigurations = {
jokum = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit unstable inputs; };
specialArgs = { inherit inputs; };
modules = [
./base.nix
./hosts/jokum/configuration.nix
sops-nix.nixosModules.sops
@@ -32,8 +33,9 @@
};
ildkule = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit unstable inputs; };
specialArgs = { inherit inputs; };
modules = [
./base.nix
./hosts/ildkule/configuration.nix
sops-nix.nixosModules.sops
];