feat(stolas): enable admin module

This commit is contained in:
Tim Schubert 2025-07-26 16:04:21 +02:00
parent 5f9eac5700
commit 2e8aa80b70
No known key found for this signature in database
3 changed files with 11 additions and 8 deletions

View file

@ -97,8 +97,8 @@ in
services.openssh.openFirewall = true;
users.users = mapAttrs (user: keys: {
shell = shells."${keys.shell}";
extraGroups = extraGroups;
shell = lib.mkDefault shells."${keys.shell}";
extraGroups = lib.mkDefault extraGroups;
isNormalUser = true;
openssh.authorizedKeys.keys = keys.keys;
}) cfg.users;