summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2015-09-30 17:46:41 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2015-09-30 17:46:41 +0200
commit5482c89f2dad0a5ae123e358e83242aa61631582 (patch)
tree52ecefcfbc87091224ebfa412a6dddc4e843d4a1
parentf41e1f887b426ffac35f103074340f097eb653e1 (diff)
downloadnixos-5482c89f2dad0a5ae123e358e83242aa61631582.tar
nixos-5482c89f2dad0a5ae123e358e83242aa61631582.tar.gz
nixos-5482c89f2dad0a5ae123e358e83242aa61631582.tar.bz2
nixos-5482c89f2dad0a5ae123e358e83242aa61631582.tar.xz
nixos-5482c89f2dad0a5ae123e358e83242aa61631582.zip
further pam trial and error
-rw-r--r--ymir.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/ymir.nix b/ymir.nix
index 2e0d2ea3..c3865580 100644
--- a/ymir.nix
+++ b/ymir.nix
@@ -115,10 +115,10 @@ in {
115 }; 115 };
116 }; 116 };
117 security.pam.services."xmpp".text = '' 117 security.pam.services."xmpp".text = ''
118 auth required pam_warn.so audit 118 auth optional pam_warn.so
119 auth required pam_succeed_if.so user ingroup xmpp audit 119 auth requisite pam_succeed_if.so user ingroup xmpp
120 auth sufficient pam_unix.so try_first_pass audit 120 auth sufficient pam_unix.so audit
121 auth required pam_deny.so audit 121 auth required pam_deny.so
122 ''; 122 '';
123 users.groups."xmpp" = { 123 users.groups."xmpp" = {
124 members = [ "gkleen" 124 members = [ "gkleen"