nix-infra/config/hosts/forgejo/configuration.nix
2024-01-28 03:31:28 +01:00

17 lines
229 B
Nix

{ ... }:
{
boot.loader.grub = {
enable = true;
device = "/dev/vda";
};
networking = {
hostName = "forgejo";
firewall = {
allowedTCPPorts = [ 80 8443 ];
};
};
system.stateVersion = "23.11";
}