11 lines
161 B
Nix
11 lines
161 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
inherit (config.serverConfig) vhosts;
|
|
inherit (config.networking) domain;
|
|
in {
|
|
services.openldap = {
|
|
enable = true;
|
|
|
|
};
|
|
}
|