guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: home: services: dicod, syncthing: Import (gnu hom


From: guix-commits
Subject: branch master updated: home: services: dicod, syncthing: Import (gnu home services shepherd).
Date: Tue, 29 Aug 2023 06:29:37 -0400

This is an automated email from the git hooks/post-receive script.

civodul pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new cf6abf50db home: services: dicod, syncthing: Import (gnu home services 
shepherd).
cf6abf50db is described below

commit cf6abf50dbbbd95fef465ab4bb3b608843ac47e1
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Tue Aug 29 11:39:23 2023 +0200

    home: services: dicod, syncthing: Import (gnu home services shepherd).
    
    Fixes <https://issues.guix.gnu.org/65510>.
    
    Without this import, 'shepherd-service-type' is not mapped, leading to
    an error about missing 'system' target.
    
    * gnu/home/services/dict.scm,
    gnu/home/services/syncthing.scm: Add #:use-module clause.
    
    Reported-by: Morgan Smith <Morgan.J.Smith@outlook.com>
---
 gnu/home/services/dict.scm      | 2 ++
 gnu/home/services/syncthing.scm | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/gnu/home/services/dict.scm b/gnu/home/services/dict.scm
index b8a4653276..9c251f2bba 100644
--- a/gnu/home/services/dict.scm
+++ b/gnu/home/services/dict.scm
@@ -21,6 +21,8 @@
   #:use-module (gnu services)
   #:use-module (gnu services dict)
   #:use-module ((gnu system shadow) #:select (account-service-type))
+  ;; For the 'home-shepherd-service-type' mapping.
+  #:use-module (gnu home services shepherd)
   #:export (home-dicod-service-type)
   #:re-export (dicod-configuration))
 
diff --git a/gnu/home/services/syncthing.scm b/gnu/home/services/syncthing.scm
index 9c9eb94ea1..8d66a167ce 100644
--- a/gnu/home/services/syncthing.scm
+++ b/gnu/home/services/syncthing.scm
@@ -20,6 +20,8 @@
   #:use-module (gnu services)
   #:use-module (gnu home services)
   #:use-module (gnu services syncthing)
+  ;; For the 'home-shepherd-service-type' mapping.
+  #:use-module (gnu home services shepherd)
   #:export (home-syncthing-service-type)
   #:re-export (syncthing-configuration
                syncthing-configuration?))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]