diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-03-23 12:54:54 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-03-23 12:54:54 +0100 |
commit | 48dd592cab144cba13839a7b99b272a0b5924111 (patch) | |
tree | 72a0f6a1df29f62afe9cfe071c82c4de447aa16e | |
parent | e839fe49c3febfcc892e7c12189aeef56cc8b4c7 (diff) |
Use qemu7 for riscv64 and aarch64 virtualization
-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. |