Add virtualbox

This commit is contained in:
ItsDrike 2024-07-08 14:54:54 +02:00
parent 38945825aa
commit cd412906a8
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
4 changed files with 21 additions and 0 deletions

View file

@ -10,5 +10,6 @@ _: {
./stremio.nix
./qbittorrent.nix
./qalculate-gtk.nix
./virtualbox.nix
];
}

View file

@ -0,0 +1,16 @@
{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.applications.virtualbox;
in {
config = mkIf cfg.enable {
home.packages = with pkgs; [
virtualbox
];
};
}