new editors added

This commit is contained in:
Jakub Kropáček 2024-11-18 19:24:29 +01:00
parent 912e878639
commit 5f2b8eac15
3 changed files with 10 additions and 2 deletions

View file

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

View file

@ -33,7 +33,7 @@
modesetting.enable = true;
powerManagement.enable = false;
powerManagement.finegrained = false;
open = false;
open = true;
package = config.boot.kernelPackages.nvidiaPackages.latest;
};
@ -45,6 +45,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,7 @@ 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 ];
};
}