nixos/home/prog/default.nix

35 lines
590 B
Nix
Raw Normal View History

{pkgs, ...}: {
2024-03-22 14:43:17 +00:00
xdg.configFile."ruff/pyproject.toml".source = ./ruff.toml;
home.packages = with pkgs; [
# Nix
nil
alejandra
# Shell
shfmt
shellcheck
2024-03-18 21:09:37 +00:00
# Lua
(luajit.withPackages (ps: [(ps.callPackage ./luarocks/scilua.nix {})]))
luarocks-nix
2024-03-18 21:09:37 +00:00
lua-language-server
stylua
# Fortran
gfortran
fortls
# Python
ruff
## Python - JupyterLab
(python3.withPackages
(ps:
with ps; [
jupyterlab
jupyterlab-git
(callPackage ./catppuccin_jupyterlab/default.nix {})
]))
];
}