nix-infra/config/hosts/netbox/configuration.nix

18 lines
248 B
Nix
Raw Permalink Normal View History

2023-08-05 04:47:14 +02:00
{ ... }:
{
boot.loader.grub = {
enable = true;
device = "/dev/vda";
};
networking = {
hostName = "netbox";
firewall = {
enable = true;
allowedTCPPorts = [ 80 443 ];
};
};
system.stateVersion = "23.05";
}