Simon Bruder
db1348014e
MPV is disabled since the override options no longer work. This also applies updated formatting.
8 lines
150 B
Nix
8 lines
150 B
Nix
{ pkgs, gui ? false, ... }:
|
|
|
|
{
|
|
virtualisation.libvirtd.enable = true;
|
|
|
|
environment.systemPackages = if gui then [ pkgs.virt-manager ] else [ ];
|
|
}
|