mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
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>
This commit is contained in:
parent
e208dfed2d
commit
2934de1447
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue