nixos: fix nobody/nogroup in security.wrappers

This commit is contained in:
rnhmjoj 2021-09-12 19:04:55 +02:00
parent fedd7cd690
commit 65e83b0e23
No known key found for this signature in database
GPG key ID: BFBAF4C975F76450

View file

@ -869,10 +869,10 @@ in
security.wrappers = {
unix_chkpwd = {
source = "${pkgs.pam}/sbin/unix_chkpwd.orig";
owner = "root";
group = "nogroup";
setuid = true;
owner = "root";
group = "root";
source = "${pkgs.pam}/sbin/unix_chkpwd.orig";
};
};