added r globally

This commit is contained in:
twoneis 2023-11-25 18:51:20 +01:00
parent f2b914603e
commit e03a89b942
2 changed files with 9 additions and 0 deletions

View file

@ -11,6 +11,7 @@
./git ./git
./media ./media
./notes ./notes
./r
./terminal ./terminal
./utils ./utils
]; ];

View file

@ -0,0 +1,8 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
R
rstudio
pandoc
texlive.combined.scheme-full
];
}