this won't work, right?

This commit is contained in:
Till 2023-05-13 11:43:33 +02:00
parent fed5be1bd3
commit 1d5cc28519
2 changed files with 24 additions and 14 deletions

19
R.nix Normal file
View file

@ -0,0 +1,19 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs;
let
R-packed = rWrapper.override {
packages = with rPackages; [
jsonlite
rlist
rvest
sf
tidyverse
tmap
];
};
in [
R-packed
];
}