nixos/roles/portunus.nix
2024-12-18 18:19:37 -06:00

15 lines
250 B
Nix

{
services = {
portunus = {
enable = true;
domain = "users.thewordnerd.info";
ldap = {
suffix = "dc=thewordnerd,dc=info";
};
};
};
networking.firewall.interfaces."ve-+".allowedTCPPorts = [
389
];
}