ui: Autoload some more.

* guix/ui.scm: Autoload a number of modules.

Change-Id: I22d4f719dae73594499522ce6dc8464948f564ec
This commit is contained in:
Ludovic Courtès 2024-03-30 15:57:55 +01:00
parent 4d79a9cd6b
commit 7bc1f7be62
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -47,13 +47,15 @@
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix profiles) #:use-module (guix profiles)
#:use-module (guix derivations) #:use-module (guix derivations)
#:use-module (guix build-system) #:autoload (guix build-system) (build-system-name)
#:use-module (guix serialization) #:use-module (guix serialization)
#:use-module ((guix licenses) #:autoload (guix licenses) (license?
#:select (license? license-name license-uri)) license-name
#:use-module ((guix build syscalls) license-uri)
#:select (free-disk-space terminal-columns terminal-rows #:autoload (guix build syscalls) (free-disk-space
with-file-lock/no-wait)) terminal-columns
terminal-rows
with-file-lock/no-wait)
#:use-module ((guix build utils) #:use-module ((guix build utils)
;; XXX: All we need are the bindings related to ;; XXX: All we need are the bindings related to
;; '&invoke-error'. However, to work around the bug described ;; '&invoke-error'. However, to work around the bug described