diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2015-09-30 17:46:41 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2015-09-30 17:46:41 +0200 |
commit | 5482c89f2dad0a5ae123e358e83242aa61631582 (patch) | |
tree | 52ecefcfbc87091224ebfa412a6dddc4e843d4a1 | |
parent | f41e1f887b426ffac35f103074340f097eb653e1 (diff) | |
download | nixos-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.nix | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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" |