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

17 lines
234 B
Nix
Raw Normal View History

2024-01-19 12:15:00 +01:00
{ ... }:
{
boot.loader.grub = {
enable = true;
device = "/dev/vda";
};
networking = {
hostName = "keycloak";
firewall = {
allowedTCPPorts = [ 80 443 8443 ];
};
};
system.stateVersion = "23.11";
}