Move around commented `nixosConfigurations.nixps` block.

This commit is contained in:
Whovian NTSN 2024-06-04 21:47:21 -04:00
parent 0bb17c2e91
commit dccffdbc7d
1 changed files with 41 additions and 39 deletions

View File

@ -133,6 +133,30 @@
} }
]; ];
}; };
isoimage = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
# ./configuration.nix
{
nix = {
extraOptions = "
experimental-features = nix-command flakes
";
};
programs = {
zsh = {
enable = true;
};
};
users = {
defaultUserShell = pkgs.zsh;
};
}
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix"
];
};
/* /*
nixps = nixpkgs.lib.nixosSystem { nixps = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
@ -173,28 +197,6 @@
]; ];
}; };
*/ */
isoimage = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
# ./configuration.nix
{
nix = {
extraOptions = "
experimental-features = nix-command flakes
";
};
programs = {
zsh = {
enable = true;
};
};
users = {
defaultUserShell = pkgs.zsh;
};
}
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix"
];
};
}; };
packages.x86_64-linux = { packages.x86_64-linux = {