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 + ]; +}