1
1
mirror of https://github.com/divnix/digga.git synced 2024-11-23 20:22:04 +03:00
digga/hosts/niximg.nix
2020-01-11 00:24:12 -07:00

14 lines
314 B
Nix

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