14 lines
178 B
Nix
14 lines
178 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
boot.loader.grub = {
|
||
|
enable = true;
|
||
|
device = "/dev/vda";
|
||
|
};
|
||
|
|
||
|
networking = {
|
||
|
hostName = "gameserver-node-1";
|
||
|
};
|
||
|
|
||
|
system.stateVersion = "24.05";
|
||
|
}
|