diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2023-06-27 15:43:27 -0400 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2023-06-27 15:43:27 -0400 |
commit | 63660f0febb4aa0d5260791c82dfde15c0df4c79 (patch) | |
tree | 153f554227e388bb69ec2a8ec3443e0cac31e919 | |
parent | ac86174e22fcd762893bd4515786b1376af9397b (diff) |
services: pam-limits: Add lightdm.
Without this a user's pam-limits-service-type configuration does not have an
effect when using lightdm.
* gnu/services/base.scm (pam-limits-service-type): Add "lightdm" to the list.
-rw-r--r-- | gnu/services/base.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm index bbc2ac2c79..636d827ff9 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -1613,7 +1613,7 @@ information on the configuration file syntax." '("conf=/etc/security/limits.conf"))))) (if (member (pam-service-name pam) '("login" "greetd" "su" "slim" "gdm-password" - "sddm" "sudo" "sshd")) + "sddm" "sudo" "sshd" "lightdm")) (pam-service (inherit pam) (session (cons pam-limits |