nixos-config/configurations/host/waffentrager/services/auth/default.nix

12 lines
164 B
Nix
Raw Normal View History

2024-04-12 09:56:47 +02:00
{ config, materusArg, lib, pkgs, ... }:
{
imports =
[
2024-07-13 15:44:07 +02:00
./lldap.nix
2024-04-12 09:56:47 +02:00
];
2024-07-09 23:45:39 +02:00
config =
2024-04-12 09:56:47 +02:00
{
2024-07-13 15:44:07 +02:00
waffentragerService.auth.lldap.enable = true;
2024-04-12 09:56:47 +02:00
};
}