fixed mkEnableOptions
This commit is contained in:
parent
b7210fcf8e
commit
c412bffcd9
1 changed files with 8 additions and 2 deletions
|
@ -2,8 +2,14 @@
|
|||
{
|
||||
options = {
|
||||
desktop = {
|
||||
kitty.enable = lib.mkEnableOption { default = config.desktop.enable; };
|
||||
vscodium.enable = lib.mkEnableOption { default = config.desktop.enable; };
|
||||
kitty.enable = lib.mkOption {
|
||||
default = config.desktop.enable;
|
||||
type = lib.types.bool;
|
||||
};
|
||||
vscodium.enable = lib.mkOption {
|
||||
default = config.desktop.enable;
|
||||
type = lib.types.bool;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue