nixos-config/virtualisation/libvirt.nix

9 lines
202 B
Nix
Raw Normal View History

2022-01-27 15:06:12 +01:00
{ config, pkgs, ... }:
{
virtualisation.libvirtd.enable = true;
# virtualisation.spiceUSBRedirection.enable = true;
2022-01-27 15:06:12 +01:00
2022-02-05 01:36:56 +01:00
environment.systemPackages = with pkgs; [ virt-manager gnome.gnome-boxes ];
2022-01-27 15:06:12 +01:00
}