chore(hmModules): add options for main apps WIP:
This commit is contained in:
parent
cfcb63cc6f
commit
7d06874df6
1 changed files with 20 additions and 0 deletions
|
@ -19,6 +19,26 @@ in
|
|||
options = {
|
||||
"${moduleName}" = {
|
||||
enable = lib.mkEnableOption "Enable ${moduleName}.";
|
||||
mainApps = {
|
||||
terminal = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "kitty";
|
||||
example = "kitty";
|
||||
description = "What terminal is the default.";
|
||||
};
|
||||
browser = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "firefox";
|
||||
example = "firefox";
|
||||
description = "What browser is the default.";
|
||||
};
|
||||
launcher = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "fuzzel";
|
||||
example = "fuzzel";
|
||||
description = "What launcher is the default.";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue