clion
This commit is contained in:
parent
2de5aeeafa
commit
69e9f0f469
2 changed files with 10 additions and 0 deletions
|
@ -39,6 +39,7 @@
|
|||
install-goland = true;
|
||||
install-webstorm = true;
|
||||
install-datagrip = true;
|
||||
install-clion = true;
|
||||
};
|
||||
python = {
|
||||
enable = true;
|
||||
|
|
|
@ -34,6 +34,11 @@ in
|
|||
default = false;
|
||||
example = true;
|
||||
};
|
||||
install-clion = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
example = true;
|
||||
};
|
||||
|
||||
};
|
||||
config = lib.mkIf cfg.enable {
|
||||
|
@ -46,6 +51,10 @@ in
|
|||
++ lib.optionals cfg.install-pycharm [ pkgs.jetbrains.pycharm-professional ]
|
||||
++ lib.optionals cfg.install-goland [ pkgs.jetbrains.goland ]
|
||||
++ lib.optionals cfg.install-webstorm [ pkgs.jetbrains.webstorm ]
|
||||
++ lib.optionals cfg.install-clion [
|
||||
pkgs.jetbrains.clion
|
||||
pkgs.clang-tools
|
||||
]
|
||||
++ lib.optionals cfg.install-datagrip [ pkgs.jetbrains.datagrip ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue