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 = { ide = {
enable = true; enable = true;
install-pycharm = true; install-pycharm = true;
install-goland = true;
}; };
python = { python = {
enable = true; enable = true;

View file

@ -19,6 +19,11 @@ in
default = false; default = false;
example = true; example = true;
}; };
install-goland = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
};
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
environment.systemPackages = environment.systemPackages =
@ -27,6 +32,8 @@ in
zed-editor zed-editor
vscodium 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 ];
}; };
} }