From 20b2af86d7b1a3a71d9564fe6d14cf4d1d6f5340 Mon Sep 17 00:00:00 2001 From: twoneis Date: Tue, 2 Jul 2024 02:39:18 +0200 Subject: [PATCH] renamed and removed options --- devices/ellaca/options.nix | 7 ++----- options.nix | 7 ++----- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/devices/ellaca/options.nix b/devices/ellaca/options.nix index a864d8f..6de4a87 100644 --- a/devices/ellaca/options.nix +++ b/devices/ellaca/options.nix @@ -1,15 +1,12 @@ { ... }: { - full = true; - - withAudio = true; - withBluetooth = true; + user = true; withNiri = true; withGnome = false; - withPlasma = true; withVM = false; withContainers = true; + withGames = true; hwmonPath = "/sys/class/hwmon/hwmon1/temp1_input"; diff --git a/options.nix b/options.nix index 7e742dc..3186ca8 100644 --- a/options.nix +++ b/options.nix @@ -1,16 +1,13 @@ { lib, ... }: { options = with lib; { - full = mkEnableOption "Full home manager configuration with all programs"; - - withAudio = mkEnableOption "Enable support for audio"; - withBluetooth = mkEnableOption "Enable bluetooth"; + user = mkEnableOption "Enable complete configuration for end-user machine"; withNiri = mkEnableOption "Enable niri compositor"; withGnome = mkEnableOption "Enable Gnome"; - withPlasma = mkEnableOption "Enable KDE Plasma"; withVM = mkEnableOption "Enable VM related configuration"; withContainers = mkEnableOption "Enable container support"; + withGames = mkEnableOption "Enable games"; hwmonPath = mkOption {