mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-22 14:06:30 +00:00
27 lines
497 B
Nix
27 lines
497 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs;
|
|
let
|
|
R-with-my-packages = rWrapper.override {
|
|
packages = with rPackages; [
|
|
ggplot2
|
|
tidyverse
|
|
rlang
|
|
lazyeval
|
|
patchwork
|
|
];
|
|
};
|
|
rstudioEnv = rstudioWrapper.override {
|
|
packages = with rPackages; [
|
|
ggplot2
|
|
tidyverse
|
|
rlang
|
|
lazyeval
|
|
patchwork
|
|
];
|
|
};
|
|
in
|
|
#[ R-with-my-packages rstudioEnv ];
|
|
[ R-with-my-packages ];
|
|
}
|