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