nixos/modules/virtualisation/kvm_host.nix

10 lines
232 B
Nix
Raw Normal View History

2023-06-09 20:54:03 +08:00
# TODO: disable auto usb redirection
{ pkgs, ...}@inputs:
{
config =
{
virtualisation = { libvirtd.enable = true; spiceUSBRedirection.enable = true; };
environment.systemPackages = with pkgs; [ qemu_full virt-manager ];
};
}