about summary refs log tree commit diff
path: root/nixos/modules/security
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-02-25 12:25:44 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2017-02-27 11:49:10 -0600
commit8eb4d2afbc1d61d316073f25f5885a46ccb37ea2 (patch)
treeb5582ec31def0927d797f5ec3a1fc76df50a4bd2 /nixos/modules/security
parentc1ddd2353bbf3085a3b82e12edaee01d27c9e45a (diff)
downloadnixlib-8eb4d2afbc1d61d316073f25f5885a46ccb37ea2.tar
nixlib-8eb4d2afbc1d61d316073f25f5885a46ccb37ea2.tar.gz
nixlib-8eb4d2afbc1d61d316073f25f5885a46ccb37ea2.tar.bz2
nixlib-8eb4d2afbc1d61d316073f25f5885a46ccb37ea2.tar.lz
nixlib-8eb4d2afbc1d61d316073f25f5885a46ccb37ea2.tar.xz
nixlib-8eb4d2afbc1d61d316073f25f5885a46ccb37ea2.tar.zst
nixlib-8eb4d2afbc1d61d316073f25f5885a46ccb37ea2.zip
Remove top-level kde5 attribute
- There is no such thing as KDE 5
Diffstat (limited to 'nixos/modules/security')
-rw-r--r--nixos/modules/security/pam.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/security/pam.nix b/nixos/modules/security/pam.nix
index b51c8b4996be..5632500df2e0 100644
--- a/nixos/modules/security/pam.nix
+++ b/nixos/modules/security/pam.nix
@@ -280,8 +280,8 @@ let
               ${optionalString cfg.pamMount
                 "auth optional ${pkgs.pam_mount}/lib/security/pam_mount.so"}
               ${optionalString cfg.enableKwallet
-                ("auth optional ${pkgs.kde5.kwallet-pam}/lib/security/pam_kwallet5.so" +
-                 " kwalletd=${pkgs.kde5.kwallet}/bin/kwalletd5")}
+                ("auth optional ${pkgs.plasma5.kwallet-pam}/lib/security/pam_kwallet5.so" +
+                 " kwalletd=${pkgs.libsForQt5.kwallet}/bin/kwalletd5")}
             '') + ''
           ${optionalString cfg.unixAuth
               "auth sufficient pam_unix.so ${optionalString cfg.allowNullPassword "nullok"} likeauth try_first_pass"}
@@ -349,8 +349,8 @@ let
           ${optionalString (cfg.enableAppArmor && config.security.apparmor.enable)
               "session optional ${pkgs.apparmor-pam}/lib/security/pam_apparmor.so order=user,group,default debug"}
           ${optionalString (cfg.enableKwallet)
-              ("session optional ${pkgs.kde5.kwallet-pam}/lib/security/pam_kwallet5.so" +
-               " kwalletd=${pkgs.kde5.kwallet}/bin/kwalletd5")}
+              ("session optional ${pkgs.plasma5.kwallet-pam}/lib/security/pam_kwallet5.so" +
+               " kwalletd=${pkgs.libsForQt5.kwallet}/bin/kwalletd5")}
         '');
     };