This commit is contained in:
Jakub Kropáček 2025-02-21 07:56:36 +01:00
parent 2de5aeeafa
commit 69e9f0f469
2 changed files with 10 additions and 0 deletions

View file

@ -39,6 +39,7 @@
install-goland = true;
install-webstorm = true;
install-datagrip = true;
install-clion = true;
};
python = {
enable = true;

View file

@ -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 ];
};
}