From be2774838a18e37ccb7021773c14e175ae46799a Mon Sep 17 00:00:00 2001 From: Joshua Yuen Date: Tue, 29 Jul 2025 13:30:21 -0400 Subject: [PATCH] Improve default options --- modules/options/hyprland.nix | 5 ++++- modules/options/plasma.nix | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) 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