2024-02-09 08:42:38 +00:00
|
|
|
{pkgs, ...}: {
|
2024-03-22 14:43:17 +00:00
|
|
|
xdg.configFile."ruff/pyproject.toml".source = ./ruff.toml;
|
2024-02-09 08:42:38 +00:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
# Nix
|
2024-02-21 06:42:18 +00:00
|
|
|
nil
|
2024-03-19 10:40:56 +00:00
|
|
|
alejandra
|
2024-02-09 08:42:38 +00:00
|
|
|
|
2024-03-27 14:52:02 +00:00
|
|
|
# Shell
|
|
|
|
shfmt
|
|
|
|
shellcheck
|
|
|
|
|
2024-03-18 21:09:37 +00:00
|
|
|
# Lua
|
2024-03-19 13:36:11 +00:00
|
|
|
(luajit.withPackages (ps: [(ps.callPackage ./luarocks/scilua.nix {})]))
|
2024-03-19 13:17:22 +00:00
|
|
|
luarocks-nix
|
2024-03-18 21:09:37 +00:00
|
|
|
lua-language-server
|
|
|
|
stylua
|
|
|
|
|
2024-03-27 14:52:02 +00:00
|
|
|
# Fortran
|
|
|
|
gfortran
|
|
|
|
fortls
|
|
|
|
|
2024-02-09 08:42:38 +00:00
|
|
|
# Python
|
2024-03-27 14:52:02 +00:00
|
|
|
ruff
|
|
|
|
|
|
|
|
## Python - JupyterLab
|
2024-03-25 17:07:37 +00:00
|
|
|
(python3.withPackages
|
|
|
|
(ps:
|
|
|
|
with ps; [
|
|
|
|
jupyterlab
|
|
|
|
jupyterlab-git
|
|
|
|
(callPackage ./catppuccin_jupyterlab/default.nix {})
|
|
|
|
]))
|
2024-02-09 08:42:38 +00:00
|
|
|
];
|
|
|
|
}
|