From 8f871c6e00a83bbf35d5c7fe2da2890f594c4724 Mon Sep 17 00:00:00 2001 From: FabricSoul Date: Mon, 27 Oct 2025 23:02:15 -0400 Subject: [PATCH] update: add qemu --- hosts/common/optional/qemu.nix | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hosts/common/optional/qemu.nix diff --git a/hosts/common/optional/qemu.nix b/hosts/common/optional/qemu.nix new file mode 100644 index 0000000..1d05bf1 --- /dev/null +++ b/hosts/common/optional/qemu.nix @@ -0,0 +1,5 @@ +{pkgs, ...}: { + environment = { + systemPackages = [pkgs.qemu]; + }; +}