Improve default options

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

View File

@ -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"

View File

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