diff options
author | Feng Shu <tumashu@163.com> | 2025-03-29 15:48:26 +0800 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-04-10 01:30:38 +0200 |
commit | 2934de1447f87b361608ef3a2a756b8a5d2f42e6 (patch) | |
tree | 22b8027f001e63b66e2c84a7e158eaf9c7770246 | |
parent | e208dfed2d8e2318373d3ecafa0a130b2b483eb8 (diff) | |
download | guix-2934de1447f87b361608ef3a2a756b8a5d2f42e6.tar.gz guix-2934de1447f87b361608ef3a2a756b8a5d2f42e6.zip |
gnu: Fix guix system vm --share argument error.
* gnu/system/vm.scm (common-qemu-options): Fix guix system vm --share argument error.
Change-Id: I4182e2dbe1b54e6eec2fb6ca53f9345f6d396f14
Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
-rw-r--r-- | gnu/system/vm.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index 4f2a27daf7..d4a15257d3 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -221,9 +221,9 @@ environment with the store shared with the host. MAPPINGS is a list of with '-virtfs' options for the host file systems listed in SHARED-FS." (define (virtfs-option fs) - #~("-virtfs" - (format #f "local,path=~a,security_model=none,mount_tag=~a" - #$fs #$(file-system->mount-tag fs)))) + (list "-virtfs" + #~(format #f "local,path=~a,security_model=none,mount_tag=~a" + #$fs #$(file-system->mount-tag fs)))) #~(;; Only enable kvm if we see /dev/kvm exists. ;; This allows users without hardware virtualization to still use these |