ed: drop packages redundant with upstream langPackageDefaults

settings.lang_packages now appends to built-in defaults upstream
(nvimConfig 9a6e201), so arrow/data_table/nvimcom need not be re-listed;
only project-specific fixest stays.
This commit is contained in:
Daniel Winkler 2026-08-25 11:34:07 +10:00
commit 50bf84b974

View file

@ -58,10 +58,7 @@
r = r =
(with pkgs.rpkgs.rPackages; [ (with pkgs.rpkgs.rPackages; [
arrow
data_table
fixest fixest
pkgs.nvimcom
]) ])
++ extraRPackages; ++ extraRPackages;
@ -125,16 +122,10 @@
packages = packages =
[ [
nv nv
pkgs.nushell
] ]
++ nvimConfig.lib.devShellPackages evalResult.config; ++ nvimConfig.lib.devShellPackages evalResult.config;
shellHook = shellHook =
nvimConfig.lib.shellHook evalResult.config nvimConfig.lib.shellHook evalResult.config;
+ ''
if [ -z "''${NO_NUSHELL:-}" ]; then
exec nu
fi
'';
}; };
}); });
}; };