t14_legacy_config/home/apps/virtmanager.nix

14 lines
254 B
Nix
Raw Normal View History

2022-11-30 04:29:21 +01:00
{ config, lib, pkgs, ... } :
with lib;
let
cfg = config.local.apps.virtmanager;
in
{
options.local.apps.virtmanager.enable = mkEnableOption "Virtmanager";
config = mkIf cfg.enable {
home.packages = with pkgs; [
virt-manager
];
};
}