* Ensure that the "kde" PAM module exists whn KDE is enabled.
Previously, this was only enabled in the KDM module, so if you were using a different display manager than KDM, stuff like getting out of the screensaver didn't work correctly. svn path=/nixos/trunk/; revision=30049
This commit is contained in:
parent
021409b21f
commit
6e809242e9
|
@ -152,6 +152,8 @@ in
|
|||
services.udisks = mkIf isKDE47 { enable = true; };
|
||||
services.upower = mkIf (isKDE47 && config.powerManagement.enable) { enable = true; };
|
||||
|
||||
security.pam.services = [ { name = "kde"; } ];
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue