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

10 lines
199 B
Nix
Raw Normal View History

2025-01-24 21:31:05 +01:00
{pkgs, config, ...}: {
environment.systemPackages = with pkgs; [
quickemu
qemu
];
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
}