nixcfg/nixosModules/apps/virt-manager/default.nix

16 lines
312 B
Nix

{ pkgs, lib, config, ... }: {
options = {
apps.virt-manager.enable =
lib.mkEnableOption "Enables virt-manager with TPM and EFI support.";
};
config = lib.mkIf config.apps.virt-manager.enable {
programs.virt-manager.enable = true;
virtualisation = { libvirtd.enable = true; };
};
}