Evie Litherland-Smith
eb7e6c3b13
Use flake8 for python flymake linting (along with mypy of course) Add fortls FORTRAN language server to default installed packages as well
33 lines
684 B
Nix
33 lines
684 B
Nix
{pkgs, ...}: {
|
|
xdg.configFile = {
|
|
"ruff/pyproject.toml".source = ./ruff.toml;
|
|
"pypoetry/config.toml".source = ./pypoetry.toml;
|
|
"jupyter/jupyter_server_config.py".source = ./jupyter_server_config.py;
|
|
"jupyter/jupyter_nbconvert_config.py".source = ./jupyter_nbconvert_config.py;
|
|
};
|
|
home.packages = with pkgs; [
|
|
# Nix
|
|
nil
|
|
alejandra
|
|
|
|
# Shell
|
|
shfmt
|
|
shellcheck
|
|
nodePackages.prettier
|
|
|
|
# Python
|
|
(python3.withPackages
|
|
(ps: with ps; [python-lsp-server flake8 mypy]))
|
|
black
|
|
isort
|
|
|
|
# FORTRAN
|
|
fortls
|
|
|
|
# JavaScript / TypeScript
|
|
nodejs
|
|
nodePackages.typescript-language-server
|
|
nodePackages.eslint
|
|
];
|
|
}
|