6 lines
152 B
Nix
6 lines
152 B
Nix
|
{ pkgs, ... }: {
|
||
|
virtualisation.libvirtd.enable = true;
|
||
|
programs.dconf.enable = true;
|
||
|
environment.systemPackages = with pkgs; [ virt-manager ];
|
||
|
}
|