17 lines
264 B
Nix
17 lines
264 B
Nix
{ ... }:
|
|
{
|
|
boot.loader.grub = {
|
|
enable = true;
|
|
device = "/dev/vda";
|
|
};
|
|
|
|
networking = {
|
|
hostName = "metrics-nekomesh";
|
|
firewall = {
|
|
enable = true;
|
|
allowedTCPPorts = [ 80 8443 9091 ];
|
|
};
|
|
};
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|