13 lines
288 B
Nix
13 lines
288 B
Nix
{
|
|
suites,
|
|
...
|
|
}:
|
|
{
|
|
### root password is empty by default ###
|
|
imports = suites.base;
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
networking.networkmanager.enable = true;
|
|
fileSystems."/" = { device = "/dev/disk/by-label/nixos"; };
|
|
}
|