From 1de2a5aa0a41431c762c13c927a795bb7a4efc9e Mon Sep 17 00:00:00 2001 From: harry123 Date: Fri, 24 Jan 2025 21:31:05 +0100 Subject: [PATCH] added qemu --- hosts/goober/features/software/default.nix | 1 + hosts/goober/features/software/qemu.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 hosts/goober/features/software/qemu.nix diff --git a/hosts/goober/features/software/default.nix b/hosts/goober/features/software/default.nix index 7333f70..3fc04c5 100644 --- a/hosts/goober/features/software/default.nix +++ b/hosts/goober/features/software/default.nix @@ -2,6 +2,7 @@ { imports = [ ./wine.nix + ./qemu.nix ./neovim.nix ./flatpak.nix ./discord.nix diff --git a/hosts/goober/features/software/qemu.nix b/hosts/goober/features/software/qemu.nix new file mode 100644 index 0000000..5f7220a --- /dev/null +++ b/hosts/goober/features/software/qemu.nix @@ -0,0 +1,7 @@ +{pkgs, config, ...}: { + + environment.systemPackages = with pkgs; [ + quickemu + qemu + ]; +}