From 2934de1447f87b361608ef3a2a756b8a5d2f42e6 Mon Sep 17 00:00:00 2001 From: Feng Shu Date: Sat, 29 Mar 2025 15:48:26 +0800 Subject: [PATCH] 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 --- gnu/system/vm.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index 4f2a27daf7a..d4a15257d3e 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