removed distrobox option

This commit is contained in:
twoneis 2024-05-27 12:56:13 +02:00
parent e7b406455c
commit fa904a086d
5 changed files with 0 additions and 9 deletions

View file

@ -10,6 +10,5 @@
withVM = false; withVM = false;
withContainers = false; withContainers = false;
withDistrobox = false;
withGames = false; withGames = false;
} }

View file

@ -10,6 +10,5 @@
withVM = false; withVM = false;
withContainers = false; withContainers = false;
withDistrobox = false;
withGames = false; withGames = false;
} }

View file

@ -7,7 +7,6 @@
./audio ./audio
./bluetooth ./bluetooth
./containers ./containers
./distrobox
./games ./games
./gnome ./gnome
./home ./home

View file

@ -1,5 +0,0 @@
{ lib, config, pkgs, ... }: lib.mkIf (config.withDistrobox) {
environment.systemPackages = with pkgs; [
distrobox
];
}

View file

@ -11,7 +11,6 @@
withVM = mkEnableOption "Enable VM related configuration"; withVM = mkEnableOption "Enable VM related configuration";
withContainers = mkEnableOption "Enable container support"; withContainers = mkEnableOption "Enable container support";
withDistrobox = mkEnableOption "Enable Distrobox";
withGames = mkEnableOption "Enable games"; withGames = mkEnableOption "Enable games";
}; };
} }