nixos/home/jetbrains/home.nix

19 lines
277 B
Nix
Raw Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.passthrough.jetbrains;
2025-01-13 11:52:09 +08:00
in
mkIf cfg.enable {
home.packages =
with pkgs.jetbrains;
[ pkgs.go ]
++ optional cfg.idea idea-community
++ optional cfg.clion clion
++ optional cfg.goland goland;
}