chore: update deps

This commit is contained in:
Chris Kruining 2025-12-06 17:42:02 +01:00
parent f079fa7487
commit a787c8c646
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
2 changed files with 128 additions and 35 deletions

View file

@ -1,10 +1,15 @@
{ inputs, lib, config, namespace, ... }: let
{
inputs,
lib,
config,
namespace,
...
}: let
inherit (lib) mkEnableOption mkIf;
cfg = config.${namespace}.services.authentication.himmelblau;
in
{
imports = [ inputs.himmelblau.nixosModules.himmelblau ];
in {
imports = [inputs.himmelblau.nixosModules.himmelblau];
options.${namespace}.services.authentication.himmelblau = {
enable = mkEnableOption "enable azure entra ID authentication";
@ -14,7 +19,7 @@ in
services.himmelblau = {
enable = true;
settings = {
domains = [];
domain = "";
pam_allow_groups = [];
local_groups = [];
};