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