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 = {
|
options = {
|
||||||
desktop = {
|
desktop = {
|
||||||
kitty.enable = lib.mkEnableOption { default = config.desktop.enable; };
|
kitty.enable = lib.mkOption {
|
||||||
vscodium.enable = lib.mkEnableOption { default = config.desktop.enable; };
|
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