mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-22 14:06:30 +00:00
15 lines
244 B
Nix
15 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 ];
|
|
}
|