exporting julia, python, r

This commit is contained in:
Daniel Winkler 2025-08-22 11:39:08 +10:00
commit 37eafcfee3

View file

@ -178,8 +178,8 @@
environmentVariables = {
project = {
};
r = {
R_LIBS_USER = "./.Rlibs";
julia = {
JULIA_NUM_THREADS = "auto";
};
python = {
# Prevent uv from managing Python downloads
@ -187,6 +187,9 @@
# Force uv to use nixpkgs Python interpreter
UV_PYTHON = pkgs.python.interpreter;
};
r = {
R_LIBS_USER = "./.Rlibs";
};
};
extraWrapperArgs = {
@ -225,10 +228,31 @@
m = {
enable = true;
path = {
value = "${pkgs.uv}/bin/uv";
value = "${pkgs.marimo}/bin/marimo";
args = ["--add-flags" "run marimo edit"];
};
};
jl = {
enable = true;
path = {
value = "${pkgs.julia-bin}/bin/julia";
args = ["--project=@."];
};
};
python3.enable = true;
r = {
enable = true;
path = {
value = "${pkgs.rWrapper}/bin/R";
args = [
"--no-save"
"--no-restore"
];
};
};
node.enable = true;
perl.enable = true;
ruby.enable = true;
};
};
categories = {