nixos-config/modules/libvirt.nix
Simon Bruder db1348014e
Update to 20.09
MPV is disabled since the override options no longer work.
This also applies updated formatting.
2020-09-25 22:32:42 +02:00

8 lines
150 B
Nix

{ pkgs, gui ? false, ... }:
{
virtualisation.libvirtd.enable = true;
environment.systemPackages = if gui then [ pkgs.virt-manager ] else [ ];
}