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

13 lines
266 B
Nix
Raw Permalink Normal View History

2025-01-24 21:31:05 +01:00
{pkgs, config, ...}: {
environment.systemPackages = with pkgs; [
2025-01-25 20:37:37 +01:00
spice-gtk
2025-01-24 21:31:05 +01:00
quickemu
qemu
];
2025-01-25 13:18:45 +01:00
2025-01-25 20:37:37 +01:00
virtualisation.spiceUSBRedirection.enable = true;
2025-01-25 13:18:45 +01:00
systemd.tmpfiles.rules = [ "L+ /var/lib/qemu/firmware - - - - ${pkgs.qemu}/share/qemu/firmware" ];
2025-01-24 21:31:05 +01:00
}