13 lines
281 B
Nix
13 lines
281 B
Nix
|
{ modulesPath, ... }: {
|
||
|
imports = [
|
||
|
# passwd is nixos by default
|
||
|
../users/nixos
|
||
|
../users/root
|
||
|
"${modulesPath}/installer/cd-dvd/iso-image.nix"
|
||
|
];
|
||
|
|
||
|
isoImage.makeEfiBootable = true;
|
||
|
isoImage.makeUsbBootable = true;
|
||
|
networking.networkmanager.enable = true;
|
||
|
}
|