Files
nixos-config/nix-config/host/waffentrager/services/auth/default.nix
T
2026-06-24 00:06:21 +02:00

14 lines
228 B
Nix

{ config, lib, pkgs, ... }:
{
imports =
[
./lldap.nix
./authelia.nix
];
config =
{
waffentragerService.auth.lldap.enable = true;
waffentragerService.auth.authelia.enable = true;
};
}