cluster/services/idm: enable sudo auth with pam_rssh

This commit is contained in:
Max Headroom 2023-12-06 01:01:09 +01:00
parent 42e2fb5af6
commit 400664edf8

View file

@ -38,6 +38,24 @@ in
authorizedKeysCommandUser = "nobody";
};
security = {
pam.services.sudo = { config, ... }: {
rules.auth.rssh = {
order = config.rules.auth.unix.order - 10;
control = "sufficient";
modulePath = "${pkgs.pam_rssh}/lib/libpam_rssh.so";
settings = {
authorized_keys_command = "/etc/ssh/authorized_keys_command_kanidm";
authorized_keys_command_user = "nobody";
};
};
};
sudo.extraConfig = ''
Defaults env_keep+=SSH_AUTH_SOCK
'';
};
environment.systemPackages = let
idmAlias = pkgs.runCommand "kanidm-idm-alias" {} ''
mkdir -p $out/bin