grimm-nixos-laptop/modules/auth.nix
2024-05-12 10:39:52 +02:00

11 lines
161 B
Nix

{ config, pkgs, ... }:
let
inherit (config.serverConfig) vhosts;
inherit (config.networking) domain;
in {
services.openldap = {
enable = true;
};
}