mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
services: guix: Support declarative offloading setup.
* gnu/services/base.scm (guix-machines-files-installation): New procedure. (<guix-configuration>)[build-machines]: New field. (guix-activation): Call ‘ guix-machines-files-installation’. (<guix-extension>)[build-machines]: New field. (guix-extension-merge): Handle it. (guix-service-type)[extend]: Likewise. * doc/guix.texi (Daemon Offload Setup): Add note linking to ‘guix-configuration’. (Base Services): Document ‘build-machines’ field of <guix-configuration> and of <guix-extension>. (Virtualization Services): Add ‘hurd-vm’ anchor.
This commit is contained in:
parent
21deb89e28
commit
aa40b085dc
2 changed files with 84 additions and 1 deletions
|
@ -1743,6 +1743,31 @@ archive' public keys, with GUIX."
|
|||
(list (file-append guix "/share/guix/berlin.guix.gnu.org.pub")
|
||||
(file-append guix "/share/guix/bordeaux.guix.gnu.org.pub")))
|
||||
|
||||
(define (guix-machines-files-installation machines)
|
||||
"Return a gexp to install MACHINES, a list of gexps, as
|
||||
/etc/guix/machines.scm, which is used for offloading."
|
||||
(with-imported-modules '((guix build utils))
|
||||
#~(begin
|
||||
(use-modules (guix build utils))
|
||||
|
||||
(define machines-file
|
||||
"/etc/guix/machines.scm")
|
||||
|
||||
;; If MACHINES-FILE already exists, move it out of the way.
|
||||
;; Create a backup if it's a regular file: it's likely that the
|
||||
;; user manually updated it.
|
||||
(if (file-exists? machines-file)
|
||||
(if (and (symbolic-link? machines-file)
|
||||
(store-file-name? (readlink machines-file)))
|
||||
(delete-file machines-file)
|
||||
(rename-file machines-file
|
||||
(string-append machines-file ".bak")))
|
||||
(mkdir-p (dirname machines-file)))
|
||||
|
||||
;; Installed the declared machines file.
|
||||
(symlink #+(scheme-file "machines.scm" machines)
|
||||
machines-file))))
|
||||
|
||||
(define-record-type* <guix-configuration>
|
||||
guix-configuration make-guix-configuration
|
||||
guix-configuration?
|
||||
|
@ -1780,6 +1805,8 @@ archive' public keys, with GUIX."
|
|||
(default #f))
|
||||
(tmpdir guix-tmpdir ;string | #f
|
||||
(default #f))
|
||||
(build-machines guix-build-machines ;list of gexps | #f
|
||||
(default #f))
|
||||
(environment guix-configuration-environment ;list of strings
|
||||
(default '())))
|
||||
|
||||
|
@ -1965,8 +1992,15 @@ proxy of 'guix-daemon'...~%")
|
|||
(system* #$(file-append guix "/bin/guix") "archive"
|
||||
"--generate-key"))
|
||||
|
||||
;; Optionally install /etc/guix/acl...
|
||||
#$(if authorize-key?
|
||||
(substitute-key-authorization authorized-keys guix)
|
||||
#~#f)
|
||||
|
||||
;; ... and /etc/guix/machines.scm.
|
||||
#$(if (guix-build-machines config)
|
||||
(guix-machines-files-installation
|
||||
#~(list #$@(guix-build-machines config)))
|
||||
#~#f))))
|
||||
|
||||
(define-record-type* <guix-extension>
|
||||
|
@ -1976,6 +2010,8 @@ proxy of 'guix-daemon'...~%")
|
|||
(default '()))
|
||||
(substitute-urls guix-extension-substitute-urls ;list of strings
|
||||
(default '()))
|
||||
(build-machines guix-extension-build-machines ;list of gexps
|
||||
(default '()))
|
||||
(chroot-directories guix-extension-chroot-directories ;list of file-like/strings
|
||||
(default '())))
|
||||
|
||||
|
@ -1985,6 +2021,8 @@ proxy of 'guix-daemon'...~%")
|
|||
(guix-extension-authorized-keys b)))
|
||||
(substitute-urls (append (guix-extension-substitute-urls a)
|
||||
(guix-extension-substitute-urls b)))
|
||||
(build-machines (append (guix-extension-build-machines a)
|
||||
(guix-extension-build-machines b)))
|
||||
(chroot-directories (append (guix-extension-chroot-directories a)
|
||||
(guix-extension-chroot-directories b)))))
|
||||
|
||||
|
@ -2008,6 +2046,11 @@ proxy of 'guix-daemon'...~%")
|
|||
(guix-configuration-authorized-keys config)))
|
||||
(substitute-urls (append (guix-extension-substitute-urls extension)
|
||||
(guix-configuration-substitute-urls config)))
|
||||
(build-machines
|
||||
(and (or (guix-build-machines config)
|
||||
(pair? (guix-extension-build-machines extension)))
|
||||
(append (or (guix-build-machines config) '())
|
||||
(guix-extension-build-machines extension))))
|
||||
(chroot-directories
|
||||
(append (guix-extension-chroot-directories extension)
|
||||
(guix-configuration-chroot-directories config))))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue