15 lines
193 B
Nix
15 lines
193 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
boot.loader.grub = {
|
||
|
enable = true;
|
||
|
device = "/dev/vda";
|
||
|
};
|
||
|
|
||
|
networking = {
|
||
|
hostName = "base";
|
||
|
firewall.enable = true;
|
||
|
};
|
||
|
|
||
|
system.stateVersion = "23.05";
|
||
|
}
|