mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-31 11:29:33 +01:00
13 lines
266 B
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" ];
|
|
}
|