diff options
author | Roman Scherer <roman@burningswell.com> | 2024-09-07 15:12:33 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-09-09 17:17:56 +0200 |
commit | 6517baf995e4b49db54a02c7f240f158e962c2ad (patch) | |
tree | 30921fb8c34ab90b84805db4c95b52299d41e2fa /doc | |
parent | cdb31a8869d9faf6baf561836e99d7b6953aebe3 (diff) | |
download | guix-6517baf995e4b49db54a02c7f240f158e962c2ad.tar.gz |
doc: cookbook: Fix typo in screen-locker-service-type
The screen locker service type is called screen-locker-service-type, and not screen-locker-services-type. * doc/guix-cookbook.texi (Xorg): Fix typo. Change-Id: I191b0cb971f435f283ff8d0278e581372d16ae95 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix-cookbook.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guix-cookbook.texi b/doc/guix-cookbook.texi index 4c2b23786c..e41d584813 100644 --- a/doc/guix-cookbook.texi +++ b/doc/guix-cookbook.texi @@ -2453,7 +2453,7 @@ be made setuid-root so it can authenticate users, and it needs a PAM service. Th can be achieved by adding the following service to your @file{config.scm}: @lisp -(service screen-locker-services-type +(service screen-locker-service-type (screen-locker-configuration (name "slock") (program (file-append slock "/bin/slock")))) |