infrastructure/systems/keycloak/default.nix
2024-04-15 11:23:20 -07:00

16 lines
222 B
Nix

_: {
imports = [
./proxmox.nix
];
arch = "x86_64";
type = "NixOS";
modules = [
./nixos.nix
];
exports = {
services = {
keycloak.enable = true;
vouch-proxy.enable = true;
};
};
}