Files
Nixos/modules/system/darwin/jetbrain.nix
T
2026-02-16 09:34:11 +01:00

22 lines
338 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"
"dataspell"
];
};
}