grimm-nixos-laptop/modules/auth.nix

11 lines
161 B
Nix
Raw Normal View History

2024-05-12 10:39:52 +02:00
{ config, pkgs, ... }:
2024-05-11 11:37:59 +02:00
let
2024-05-11 22:55:59 +02:00
inherit (config.serverConfig) vhosts;
2024-05-10 16:59:38 +02:00
inherit (config.networking) domain;
2024-05-12 09:46:41 +02:00
in {
2024-05-12 10:39:52 +02:00
services.openldap = {
enable = true;
2024-05-10 16:59:38 +02:00
};
}