nix-infra/config/hosts/metrics-nekomesh/configuration.nix

21 lines
326 B
Nix

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