nix-infra/config/hosts/metrics-nekomesh/configuration.nix
2025-11-02 21:20:49 +01:00

17 lines
258 B
Nix

{ ... }:
{
boot.loader.grub = {
enable = true;
device = "/dev/vda";
};
networking = {
hostName = "metrics-nekomesh";
firewall = {
enable = true;
allowedTCPPorts = [ 80 443 ];
};
};
system.stateVersion = "25.11";
}