Improve default options
This commit is contained in:
parent
fec4eb7cfd
commit
7625baf16f
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,9 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.modules.plasma = {
|
options.modules.plasma = {
|
||||||
enable = mkEnableOption "Enable Plasma";
|
enable = mkEnableOption {
|
||||||
|
default = false;
|
||||||
|
description = "Enable Plasma";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue