mirror of
https://github.com/ItsDrike/nixdots
synced 2024-12-25 16:04:35 +00:00
Add virtualbox
This commit is contained in:
parent
38945825aa
commit
cd412906a8
|
@ -10,5 +10,6 @@ _: {
|
|||
./stremio.nix
|
||||
./qbittorrent.nix
|
||||
./qalculate-gtk.nix
|
||||
./virtualbox.nix
|
||||
];
|
||||
}
|
||||
|
|
16
home/programs/graphical/apps/virtualbox.nix
Normal file
16
home/programs/graphical/apps/virtualbox.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
|
@ -65,6 +65,8 @@
|
|||
".local/share/Smart Code ltd/Stremio"
|
||||
".config/obs-studio"
|
||||
".local/share/PrismLauncher"
|
||||
".config/VirtualBox"
|
||||
".local/share/VirtulBox VMs"
|
||||
|
||||
# Tools
|
||||
".ssh"
|
||||
|
@ -210,6 +212,7 @@
|
|||
};
|
||||
};
|
||||
qalculate-gtk.enable = true;
|
||||
virtualbox.enable = true;
|
||||
};
|
||||
file-managers = {
|
||||
pcmanfm-qt.enable = true;
|
||||
|
|
|
@ -47,6 +47,7 @@ in
|
|||
obs.enable = mkEnableOption "OBS (Free and oepn source software for video recording and live streaming)";
|
||||
mpv.enable = mkEnableOption "MPV (General-purpose media player)";
|
||||
qalculate-gtk.enable = mkEnableOption "qalculate-gtk (The ultimate desktop calculator)";
|
||||
virtualbox.enable = mkEnableOption "VirtualBox";
|
||||
};
|
||||
|
||||
file-managers = {
|
||||
|
|
Loading…
Reference in a new issue