11 lines
271 B
Nix
11 lines
271 B
Nix
{ config, lib, pkgs, ... }: lib.mkIf config.bchmnn.virtualisation.enable {
|
|
|
|
# virt-manager
|
|
virtualisation.libvirtd.enable = true;
|
|
programs = {
|
|
dconf.enable = true;
|
|
virt-manager.enable = true;
|
|
};
|
|
environment.systemPackages = with pkgs; [ virtiofsd ];
|
|
|
|
}
|