mirror of
https://github.com/divnix/digga.git
synced 2024-12-18 05:31:30 +03:00
10 lines
263 B
Nix
10 lines
263 B
Nix
{ modulesPath, ... }: {
|
|
imports =
|
|
[ ../profiles/develop "${modulesPath}/installer/cd-dvd/iso-image.nix" ];
|
|
|
|
isoImage.makeEfiBootable = true;
|
|
isoImage.makeUsbBootable = true;
|
|
networking.networkmanager.enable = true;
|
|
users.users.root.password = "";
|
|
}
|