mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-23 06:26:30 +00:00
16 lines
244 B
Nix
16 lines
244 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with pkgs;
|
||
|
let
|
||
|
R-with-my-packages = rWrapper.override {
|
||
|
packages = with rPackages; [
|
||
|
ggplot2
|
||
|
rlang
|
||
|
lazyeval
|
||
|
];
|
||
|
};
|
||
|
in
|
||
|
[ R-with-my-packages ];
|
||
|
}
|