Evie Litherland-Smith
1a10a39900
Remove default install of rustc and JS, trim python packages down to jupyter with plugins. Move back to a nix-shell focused workflow
35 lines
590 B
Nix
35 lines
590 B
Nix
{pkgs, ...}: {
|
|
xdg.configFile."ruff/pyproject.toml".source = ./ruff.toml;
|
|
home.packages = with pkgs; [
|
|
# Nix
|
|
nil
|
|
alejandra
|
|
|
|
# Shell
|
|
shfmt
|
|
shellcheck
|
|
|
|
# Lua
|
|
(luajit.withPackages (ps: [(ps.callPackage ./luarocks/scilua.nix {})]))
|
|
luarocks-nix
|
|
lua-language-server
|
|
stylua
|
|
|
|
# Fortran
|
|
gfortran
|
|
fortls
|
|
|
|
# Python
|
|
ruff
|
|
|
|
## Python - JupyterLab
|
|
(python3.withPackages
|
|
(ps:
|
|
with ps; [
|
|
jupyterlab
|
|
jupyterlab-git
|
|
(callPackage ./catppuccin_jupyterlab/default.nix {})
|
|
]))
|
|
];
|
|
}
|