mirror of
https://github.com/materusPL/nixos-config
synced 2025-06-19 06:56:14 +02:00
14 lines
240 B
Nix
14 lines
240 B
Nix
{ config, materusArg, lib, pkgs, ... }:
|
|
{
|
|
imports =
|
|
[
|
|
./lldap.nix
|
|
./authelia.nix
|
|
];
|
|
config =
|
|
{
|
|
waffentragerService.auth.lldap.enable = true;
|
|
waffentragerService.auth.authelia.enable = true;
|
|
};
|
|
}
|