diff options
author | Ludovic Courtès <[email protected]> | 2025-01-17 23:11:50 +0100 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2025-01-26 22:09:27 +0100 |
commit | 4fa122bc4d3ccdca5b4613c3d700558c4af593fe (patch) | |
tree | ce3d72032c888e2e47bd5d11bff2598e886c94a5 /gnu | |
parent | 5cfbf7b513bdc9fb07c4e4a34d495934b6a486ad (diff) |
home: services: Add ‘transient’ and ‘timer’ to ‘%base-home-services’.
* gnu/home.scm (%base-home-services): Add
‘home-shepherd-timer-service-type’ and
‘home-shepherd-transient-service-type’.
Reviewed-by: Maxim Cournoyer <[email protected]>
Change-Id: Ib48744b82c7e4c6ff6b8ac3d669774feda813f4b
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/home.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/home.scm b/gnu/home.scm index 3b479f64f9..1172b1a0ab 100644 --- a/gnu/home.scm +++ b/gnu/home.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2021 Andrew Tropin <[email protected]> -;;; Copyright © 2022, 2024 Ludovic Courtès <[email protected]> +;;; Copyright © 2022, 2024-2025 Ludovic Courtès <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -21,6 +21,7 @@ #:use-module (gnu home services) #:use-module (gnu home services symlink-manager) #:use-module (gnu home services shells) + #:use-module (gnu home services shepherd) #:use-module (gnu home services xdg) #:use-module (gnu home services fontutils) #:use-module (gnu home services admin) @@ -80,7 +81,9 @@ (define %base-home-services ;; Non-essential but useful services to have by default. - (list (service home-log-rotation-service-type))) + (list (service home-log-rotation-service-type) + (service home-shepherd-timer-service-type) + (service home-shepherd-transient-service-type))) (define (home-environment-default-essential-services he) "Return the list of essential services for home environment." |