2020-01-04 05:06:31 +00:00
|
|
|
{ modulesPath, ... }: {
|
2020-01-11 07:24:12 +00:00
|
|
|
imports = [
|
|
|
|
# passwd is nixos by default
|
|
|
|
../users/nixos
|
|
|
|
# passwd is empty by default
|
|
|
|
../users/root
|
|
|
|
"${modulesPath}/installer/cd-dvd/iso-image.nix"
|
|
|
|
];
|
2020-01-02 02:12:59 +00:00
|
|
|
|
|
|
|
isoImage.makeEfiBootable = true;
|
|
|
|
isoImage.makeUsbBootable = true;
|
2020-01-07 06:44:35 +00:00
|
|
|
networking.networkmanager.enable = true;
|
2020-01-02 02:12:59 +00:00
|
|
|
}
|