diff options
Diffstat (limited to 'doc/guix.texi')
-rw-r--r-- | doc/guix.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 9f1e4bf0f0..a5194d7c58 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -20571,9 +20571,9 @@ Configuration record for per terminal greetd daemon service. @item @code{greetd} (default: @code{greetd}) The greetd package to use. -@item @code{shepherd-requirement} (default: @code{'()}) -This option can be used to provide a list of additional symbols naming -Shepherd services that this service will depend on, such as +@item @code{extra-shepherd-requirement} (default: @code{'()}) +This option can be used to provide a list of @emph{additional} symbols +naming Shepherd services that this service will depend on, such as @code{'seatd} or @code{'elogind} when the terminal session is a graphical greeter. @@ -20718,7 +20718,7 @@ Here is an example of a greetd configuration that uses wlgreet and Sway: (terminals (list (greetd-terminal-configuration ;; Sway requires seatd service. - (shepherd-requirement '(seatd)) + (extra-shepherd-requirement '(seatd)) (terminal-vt "1") (terminal-switch #t) (default-session-command @@ -20740,7 +20740,7 @@ follows: (terminals (list (greetd-terminal-configuration ;; Sway requires the seatd service. - (shepherd-requirement '(seatd)) + (extra-shepherd-requirement '(seatd)) (terminal-vt "1") (terminal-switch #t) (default-session-command |