diff options
-rw-r--r-- | doc/guix.texi | 2 | ||||
-rw-r--r-- | gnu/home.scm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index be7472714c..0015d739bb 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -47310,6 +47310,8 @@ This is the service type for the user Shepherd log rotation service Its value must be a @code{log-rotation-configuration} record, exactly as for its system-wide counterpart. @xref{log-rotation-configuration}, for its reference. + +This service is part of @code{%base-home-services}. @end defvar @node Secure Shell diff --git a/gnu/home.scm b/gnu/home.scm index 042d2e67de..3b479f64f9 100644 --- a/gnu/home.scm +++ b/gnu/home.scm @@ -80,7 +80,7 @@ (define %base-home-services ;; Non-essential but useful services to have by default. - '()) + (list (service home-log-rotation-service-type))) (define (home-environment-default-essential-services he) "Return the list of essential services for home environment." |