devos/hosts/niximg.nix

14 lines
330 B
Nix
Raw Normal View History

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