From e03a89b942f7bf5b23353ecd2b2e27eeca69e3f9 Mon Sep 17 00:00:00 2001 From: twoneis Date: Sat, 25 Nov 2023 18:51:20 +0100 Subject: [PATCH] added r globally --- modules/home/default.nix | 1 + modules/home/r/default.nix | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 modules/home/r/default.nix 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 + ]; +}