diff --git a/modules/options/hyprland.nix b/modules/options/hyprland.nix index 1ddcb43..cf1c24f 100644 --- a/modules/options/hyprland.nix +++ b/modules/options/hyprland.nix @@ -9,7 +9,10 @@ let in { options.modules.hyprland = { - enable = mkEnableOption "Enable Hyprland"; + enable = mkEnableOption { + default = false; + description = "Enable Hyprland"; + }; terminal = mkOption { type = types.enum [ "kitty" diff --git a/modules/options/plasma.nix b/modules/options/plasma.nix index 5458dbe..3235593 100644 --- a/modules/options/plasma.nix +++ b/modules/options/plasma.nix @@ -9,6 +9,9 @@ let in { options.modules.plasma = { - enable = mkEnableOption "Enable Plasma"; + enable = mkEnableOption { + default = false; + description = "Enable Plasma"; + }; }; } \ No newline at end of file