Files
Nixos/modules/home/darwin/jetbrain.nix
T

25 lines
391 B
Nix

{ lib, config, ... }:
with lib;
let
cfg = config.home.homebrew.jetbrain;
in
{
options.home.homebrew.jetbrain = {
enable = mkEnableOption "System jetbrain homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"intellij-idea"
"pycharm"
"phpstorm"
"rustrover"
"goland"
"datagrip"
"dataspell"
"clion"
];
};
}