Files
nix-config-v2/modules/virtualization/hardware.nix

9 lines
170 B
Nix
Raw Normal View History

2025-12-14 17:53:10 -05:00
{ pkgs, ... }: {
2024-12-12 20:41:58 -05:00
virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
2025-12-14 17:53:10 -05:00
environment.systemPackages = with pkgs; [
qemu
quickemu
];
2024-12-12 20:41:58 -05:00
}