nixos/home/jetbrains/home.nix

12 lines
264 B
Nix
Raw Normal View History

{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.passthrough.jetbrains;
in mkIf cfg.enable {
2024-05-20 09:18:26 +08:00
home.packages = with pkgs.jetbrains; [ pkgs.go ] ++
optional cfg.idea idea-community ++
optional cfg.clion clion ++
optional cfg.goland goland;
}