install rider and webstorm jetbrains ides

This commit is contained in:
wi11-holdsworth 2025-09-04 14:01:31 +10:00
parent 776471b364
commit ddb699afd8

View file

@ -9,7 +9,10 @@ let
in in
{ {
config = lib.mkIf config.${feature}.enable { config = lib.mkIf config.${feature}.enable {
environment.systemPackages = with pkgs; [ environment.systemPackages = (
with pkgs;
(
[
# general # general
devenv devenv
just just
@ -20,7 +23,13 @@ in
bacon bacon
cargo-info cargo-info
rusty-man rusty-man
]; ]
++ (with jetbrains; [
rider
webstorm
])
)
);
}; };
options.${feature}.enable = lib.mkEnableOption "enables ${feature}"; options.${feature}.enable = lib.mkEnableOption "enables ${feature}";