diff --git a/modules/home/default.nix b/modules/home/default.nix index ee63ffb..8e14cd2 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -11,6 +11,7 @@ ./git ./media ./notes + ./r ./terminal ./utils ]; diff --git a/modules/home/r/default.nix b/modules/home/r/default.nix new file mode 100644 index 0000000..3e5cb80 --- /dev/null +++ b/modules/home/r/default.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + R + rstudio + pandoc + texlive.combined.scheme-full + ]; +}