From fa904a086dbda760ed14507d1758fedd605bbe87 Mon Sep 17 00:00:00 2001 From: twoneis Date: Mon, 27 May 2024 12:56:13 +0200 Subject: [PATCH] removed distrobox option --- devices/akarso/options.nix | 1 - devices/ellaca/options.nix | 1 - modules/default.nix | 1 - modules/distrobox/default.nix | 5 ----- options.nix | 1 - 5 files changed, 9 deletions(-) delete mode 100644 modules/distrobox/default.nix diff --git a/devices/akarso/options.nix b/devices/akarso/options.nix index 4b01963..719044f 100644 --- a/devices/akarso/options.nix +++ b/devices/akarso/options.nix @@ -10,6 +10,5 @@ withVM = false; withContainers = false; - withDistrobox = false; withGames = false; } diff --git a/devices/ellaca/options.nix b/devices/ellaca/options.nix index 18ae865..1fe02db 100644 --- a/devices/ellaca/options.nix +++ b/devices/ellaca/options.nix @@ -10,6 +10,5 @@ withVM = false; withContainers = false; - withDistrobox = false; withGames = false; } diff --git a/modules/default.nix b/modules/default.nix index 5c775db..c7b5090 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -7,7 +7,6 @@ ./audio ./bluetooth ./containers - ./distrobox ./games ./gnome ./home diff --git a/modules/distrobox/default.nix b/modules/distrobox/default.nix deleted file mode 100644 index 408cb44..0000000 --- a/modules/distrobox/default.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ lib, config, pkgs, ... }: lib.mkIf (config.withDistrobox) { - environment.systemPackages = with pkgs; [ - distrobox - ]; -} diff --git a/options.nix b/options.nix index fca9d7c..cf68f8a 100644 --- a/options.nix +++ b/options.nix @@ -11,7 +11,6 @@ withVM = mkEnableOption "Enable VM related configuration"; withContainers = mkEnableOption "Enable container support"; - withDistrobox = mkEnableOption "Enable Distrobox"; withGames = mkEnableOption "Enable games"; }; }