diff options
author | Giacomo Leidi <goodoldpaul@autistici.org> | 2024-08-23 13:40:55 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-12-18 18:32:40 +0100 |
commit | 9411a1495f7cb2b116129a71a1fc1817e962fa5d (patch) | |
tree | 0376ba77e65d815ec60f00ef6f920bd364565cd0 /gnu/services | |
parent | 3eb720bd0b4bab233918f979bb51b58437db06ad (diff) | |
download | guix-9411a1495f7cb2b116129a71a1fc1817e962fa5d.tar.gz guix-9411a1495f7cb2b116129a71a1fc1817e962fa5d.zip |
services: pam: Allow extension of pam limits.
* gnu/services/pam.scm (pam-limits-service-type): Allow extension of pam
limits rules from users and services.
Change-Id: I93a363d1a2887493d52ef3ae32fc9721f81ddfa8
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/base.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm index 766371ecf1..e31d93e6ee 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -1739,6 +1739,8 @@ information on the configuration file syntax." (service-type (name 'limits) + (compose concatenate) + (extend append) (extensions (list (service-extension pam-root-service-type (lambda (config) |