nixos/modules/virtualisation/kvm_host.nix
chn c4e496bec0 安装 virt-manager
用户可以不使用sops
2023-06-17 21:24:30 +08:00

10 lines
232 B
Nix

# TODO: disable auto usb redirection
{ pkgs, ...}@inputs:
{
config =
{
virtualisation = { libvirtd.enable = true; spiceUSBRedirection.enable = true; };
environment.systemPackages = with pkgs; [ qemu_full virt-manager ];
};
}