nix-config/hosts/goober/features/software/qemu.nix

13 lines
266 B
Nix

{pkgs, config, ...}: {
environment.systemPackages = with pkgs; [
spice-gtk
quickemu
qemu
];
virtualisation.spiceUSBRedirection.enable = true;
systemd.tmpfiles.rules = [ "L+ /var/lib/qemu/firmware - - - - ${pkgs.qemu}/share/qemu/firmware" ];
}