depot/cluster/services/idm/policies/infra-admins.nix

18 lines
295 B
Nix
Raw Normal View History

2023-06-11 03:00:46 +03:00
{ lib, ... }:
{
services.kanidm.unixSettings = {
pam_allowed_login_groups = [
"infra_admins"
];
};
security.sudo.extraRules = lib.singleton {
groups = [ "infra_admins" ];
commands = lib.singleton {
command = "ALL";
options = [ "SETENV" ];
};
};
}