added goland
This commit is contained in:
parent
b1cba04a2b
commit
a4e81e211d
2 changed files with 9 additions and 1 deletions
|
@ -31,6 +31,7 @@
|
|||
ide = {
|
||||
enable = true;
|
||||
install-pycharm = true;
|
||||
install-goland = true;
|
||||
};
|
||||
python = {
|
||||
enable = true;
|
||||
|
|
|
@ -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 ];
|
||||
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue