Files
2026-04-12 15:41:44 +02:00

24 lines
369 B
Nix

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