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