Add wrapped rstudio

This commit is contained in:
Felix Suchert 2021-10-26 16:25:03 +02:00
parent e6f09f368d
commit 429535dee2
Signed by: feliix42
GPG key ID: 24363525EA0E8A99
2 changed files with 11 additions and 2 deletions

View file

@ -212,6 +212,7 @@
#lingua-franca-ide = super.callPackage ./overlays/lf-eclipse.nix { };
#})
#];
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
@ -279,7 +280,7 @@
firefox-wayland
# torbrowser
#next
rstudio
# rstudio
## time tracking
watson
## file managers

View file

@ -10,6 +10,14 @@
lazyeval
];
};
rstudioEnv = rstudioWrapper.override {
packages = with rPackages; [
ggplot2
tidyverse
rlang
lazyeval
];
};
in
[ R-with-my-packages ];
[ R-with-my-packages rstudioEnv ];
}