install rider and webstorm jetbrains ides
This commit is contained in:
parent
776471b364
commit
ddb699afd8
1 changed files with 20 additions and 11 deletions
|
|
@ -9,18 +9,27 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf config.${feature}.enable {
|
config = lib.mkIf config.${feature}.enable {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = (
|
||||||
# general
|
with pkgs;
|
||||||
devenv
|
(
|
||||||
just
|
[
|
||||||
mask
|
# general
|
||||||
vscode
|
devenv
|
||||||
|
just
|
||||||
|
mask
|
||||||
|
vscode
|
||||||
|
|
||||||
# rust
|
# rust
|
||||||
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}";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue