mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
services: base: Import the closure of (gnu build file-systems).
* gnu/services/base.scm (file-system-shepherd-service): Use 'source-module-closure' in the 'with-imported-modules' form.
This commit is contained in:
parent
a8e1247d7d
commit
943e1b975f
1 changed files with 3 additions and 2 deletions
|
@ -47,6 +47,7 @@ (define-module (gnu services base)
|
|||
#:select (mount-flags->bit-mask))
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix records)
|
||||
#:use-module (guix modules)
|
||||
#:use-module (srfi srfi-1)
|
||||
#:use-module (srfi srfi-26)
|
||||
#:use-module (ice-9 match)
|
||||
|
@ -286,8 +287,8 @@ (define (file-system-shepherd-service file-system)
|
|||
(dependencies (file-system-dependencies file-system))
|
||||
(packages (file-system-packages (list file-system))))
|
||||
(and (file-system-mount? file-system)
|
||||
(with-imported-modules '((gnu build file-systems)
|
||||
(guix build bournish))
|
||||
(with-imported-modules (source-module-closure
|
||||
'((gnu build file-systems)))
|
||||
(shepherd-service
|
||||
(provision (list (file-system->shepherd-service-name file-system)))
|
||||
(requirement `(root-file-system
|
||||
|
|
Loading…
Reference in a new issue