mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
machine: ssh: Do not import the host (guix config).
* gnu/machine/ssh.scm (machine-boot-parameters): Use 'make-config.scm' for (guix config).
This commit is contained in:
parent
d754757628
commit
70ffa8af1e
1 changed files with 4 additions and 2 deletions
|
@ -37,6 +37,7 @@ (define-module (gnu machine ssh)
|
||||||
#:use-module (guix ssh)
|
#:use-module (guix ssh)
|
||||||
#:use-module (guix store)
|
#:use-module (guix store)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
|
#:use-module ((guix self) #:select (make-config.scm))
|
||||||
#:use-module (gcrypt pk-crypto)
|
#:use-module (gcrypt pk-crypto)
|
||||||
#:use-module (ice-9 format)
|
#:use-module (ice-9 format)
|
||||||
#:use-module (ice-9 match)
|
#:use-module (ice-9 match)
|
||||||
|
@ -353,8 +354,9 @@ (define bootable-kernel-arguments
|
||||||
|
|
||||||
(define remote-exp
|
(define remote-exp
|
||||||
(with-extensions (list guile-gcrypt)
|
(with-extensions (list guile-gcrypt)
|
||||||
(with-imported-modules (source-module-closure '((guix config)
|
(with-imported-modules (source-module-closure
|
||||||
(guix profiles)))
|
`(((guix config) => ,(make-config.scm))
|
||||||
|
(guix profiles)))
|
||||||
#~(begin
|
#~(begin
|
||||||
(use-modules (guix config)
|
(use-modules (guix config)
|
||||||
(guix profiles)
|
(guix profiles)
|
||||||
|
|
Loading…
Reference in a new issue