Add a way in flake to experiment with unstable
This commit is contained in:
parent
6ead3afd36
commit
99df29e876
3 changed files with 22 additions and 8 deletions
16
flake.nix
16
flake.nix
|
@ -51,7 +51,7 @@
|
|||
}@inputs:
|
||||
|
||||
let
|
||||
mkNix = modules: stable.lib.nixosSystem {
|
||||
mkNix = modules: channel: channel.lib.nixosSystem {
|
||||
inherit modules;
|
||||
specialArgs = inputs;
|
||||
};
|
||||
|
@ -62,15 +62,15 @@
|
|||
in {
|
||||
# nh os switch /path --hostname=host
|
||||
nixosConfigurations = {
|
||||
tower = mkNix [ ./hosts/tower ]; # Main Desktop
|
||||
tower = mkNix [ ./hosts/tower ] stable; # Main Desktop
|
||||
|
||||
envy = mkNix [ ./hosts/envy ]; # HP Convertable
|
||||
intuos = mkNix [ ./hosts/intuos ]; # Wacom Intuos Tablet
|
||||
redmond = mkNix [ ./hosts/redmond ]; # Lenovo Dual-Boot
|
||||
envy = mkNix [ ./hosts/envy ] stable; # HP Convertable
|
||||
intuos = mkNix [ ./hosts/intuos ] unstable; # Wacom Intuos Tablet
|
||||
redmond = mkNix [ ./hosts/redmond ] stable; # Lenovo Dual-Boot
|
||||
|
||||
midas = mkNix [ ./hosts/midas ]; # Dell Optiplex 5040
|
||||
kitty = mkNix [ ./hosts/kitty ]; # Dell Optiplex 7010
|
||||
prophet = mkNix [ ./hosts/prophet ]; # Oracle Neoverse-N1
|
||||
midas = mkNix [ ./hosts/midas ] stable; # Dell Optiplex 5040
|
||||
kitty = mkNix [ ./hosts/kitty ] stable; # Dell Optiplex 7010
|
||||
prophet = mkNix [ ./hosts/prophet ] stable; # Oracle Neoverse-N1
|
||||
};
|
||||
|
||||
# nh home switch /path -c arch
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue