diff options
-rw-r--r-- | desktop.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/desktop.scm b/desktop.scm index 343d21a..bcd12bc 100644 --- a/desktop.scm +++ b/desktop.scm @@ -1,6 +1,7 @@ ;; This is an operating system configuration generated ;; by the graphical installer. (use-modules (gnu) + (qemu) ; TODO we need this but ugh => hope we could remove it (srfi srfi-1) ((gnu packages linux) #:prefix gnu-linux:) (gnu packages admin) @@ -12,6 +13,7 @@ (gnu packages xdisorg) (gnu packages xorg) (gnu packages video) + (gnu services virtualization) (gnu services pm) (tuxedo-keyboard) (nongnu packages linux) @@ -131,6 +133,10 @@ "EndSection" "\n" )))) + (service qemu-binfmt-service-type + (qemu-binfmt-configuration + (platforms (lookup-qemu-platforms "riscv64" "aarch64")) + (qemu qemu))) ; Removes ModemManager because it interferes with USB ; development. If using a 3/4G modem or something we have ; to activate it. |