11 lines
231 B
Nix
11 lines
231 B
Nix
{
|
|
imports = [ ];
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.networkmanager.enable = true;
|
|
users.users.root.password = "";
|
|
}
|