Improve default options

This commit is contained in:
Joshua Yuen 2025-07-29 13:30:21 -04:00
parent ad825fcceb
commit 65576fdfc5
Signed by: josh
GPG Key ID: 502720BC22ED411C
2 changed files with 8 additions and 2 deletions

View File

@ -9,7 +9,10 @@ let
in in
{ {
options.modules.hyprland = { options.modules.hyprland = {
enable = mkEnableOption "Enable Hyprland"; enable = mkEnableOption {
default = false;
description = "Enable Hyprland";
};
terminal = mkOption { terminal = mkOption {
type = types.enum [ type = types.enum [
"kitty" "kitty"

View File

@ -9,6 +9,9 @@ let
in in
{ {
options.modules.plasma = { options.modules.plasma = {
enable = mkEnableOption "Enable Plasma"; enable = mkEnableOption {
default = false;
description = "Enable Plasma";
};
}; };
} }