mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-13 18:40:57 +02:00
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 <maxim.cournoyer@gmail.com> Change-Id: Ib48744b82c7e4c6ff6b8ac3d669774feda813f4b
This commit is contained in:
parent
5cfbf7b513
commit
4fa122bc4d
1 changed files with 5 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2021 Andrew Tropin <andrew@trop.in>
|
||||
;;; Copyright © 2022, 2024 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2022, 2024-2025 Ludovic Courtès <ludo@gnu.org>
|
||||
;;;
|
||||
;;; 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."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue