nixos/home/prog/default.nix
Evie Litherland-Smith 1a10a39900 Clean out some packages from prog/default.nix
Remove default install of rustc and JS, trim python packages down to
jupyter with plugins. Move back to a nix-shell focused workflow
2024-03-27 14:52:02 +00:00

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 {})
]))
];
}