nix-infra/config/hosts/keycloak/configuration.nix
2024-01-19 12:15:00 +01:00

17 lines
234 B
Nix

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