added goland

This commit is contained in:
Jakub Kropáček 2024-11-16 22:29:05 +01:00
parent b1cba04a2b
commit a4e81e211d
2 changed files with 9 additions and 1 deletions

View file

@ -31,6 +31,7 @@
ide = {
enable = true;
install-pycharm = true;
install-goland = true;
};
python = {
enable = true;

View file

@ -19,6 +19,11 @@ in
default = false;
example = true;
};
install-goland = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages =
@ -27,6 +32,8 @@ in
zed-editor
vscodium
]
++ lib.optionals cfg.install-pycharm [ pkgs.jetbrains.pycharm-professional ];
++ lib.optionals cfg.install-pycharm [ pkgs.jetbrains.pycharm-professional ]
++ lib.optionals cfg.install-goland [ pkgs.jetbrains.goland ];
};
}