parent
aeae84f66d
commit
5cb0b971cc
6 changed files with 29 additions and 4 deletions
homeManagerModules/neovim
|
@ -19,6 +19,25 @@ in {
|
|||
user = mkOption {
|
||||
type = types.str;
|
||||
};
|
||||
|
||||
ideConfig = {
|
||||
enableBash = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
};
|
||||
enableJava = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
};
|
||||
enableNix = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
};
|
||||
enablePython = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue