From 4fa122bc4d3ccdca5b4613c3d700558c4af593fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 17 Jan 2025 23:11:50 +0100 Subject: [PATCH] =?UTF-8?q?home:=20services:=20Add=20=E2=80=98transient?= =?UTF-8?q?=E2=80=99=20and=20=E2=80=98timer=E2=80=99=20to=20=E2=80=98%base?= =?UTF-8?q?-home-services=E2=80=99.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/home.scm (%base-home-services): Add ‘home-shepherd-timer-service-type’ and ‘home-shepherd-transient-service-type’. Reviewed-by: Maxim Cournoyer Change-Id: Ib48744b82c7e4c6ff6b8ac3d669774feda813f4b --- gnu/home.scm | 7 +++++-- 1 file 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 -;;; Copyright © 2022, 2024 Ludovic Courtès +;;; Copyright © 2022, 2024-2025 Ludovic Courtès ;;; ;;; 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."