summaryrefslogtreecommitdiff
path: root/gnu/home
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/home')
-rw-r--r--gnu/home/services.scm10
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/home/services.scm b/gnu/home/services.scm
index 2e51a983cbd..6c26afafc42 100644
--- a/gnu/home/services.scm
+++ b/gnu/home/services.scm
@@ -3,6 +3,7 @@
3;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz> 3;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
4;;; Copyright © 2022-2023, 2025 Ludovic Courtès <ludo@gnu.org> 4;;; Copyright © 2022-2023, 2025 Ludovic Courtès <ludo@gnu.org>
5;;; Copyright © 2023 Carlo Zancanaro <carlo@zancanaro.id.au> 5;;; Copyright © 2023 Carlo Zancanaro <carlo@zancanaro.id.au>
6;;; Copyright © 2025 Giacomo Leidi <therewasa@fishinthecalculator.me>
6;;; 7;;;
7;;; This file is part of GNU Guix. 8;;; This file is part of GNU Guix.
8;;; 9;;;
@@ -51,6 +52,7 @@
51 home-activation-service-type 52 home-activation-service-type
52 home-run-on-change-service-type 53 home-run-on-change-service-type
53 home-provenance-service-type 54 home-provenance-service-type
55 home-gc-root-service-type
54 56
55 literal-string 57 literal-string
56 literal-string? 58 literal-string?
@@ -759,6 +761,14 @@ environment, and its configuration file, when available.")))
759 761
760 762
761;;; 763;;;
764;;; Garbage collector roots.
765;;;
766
767(define home-gc-root-service-type
768 (system->home-service-type gc-root-service-type))
769
770
771;;;
762;;; Searching 772;;; Searching
763;;; 773;;;
764 774