mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
21 lines
413 B
Nix
21 lines
413 B
Nix
{ pkgs, ... }: {
|
|
environment.systemPackages = [
|
|
(pkgs.python3.withPackages (py: [
|
|
py.black
|
|
# py.python-language-server
|
|
# py.pyls-mypy
|
|
# py.pyls-black
|
|
# py.pyls-isort
|
|
py.flake8
|
|
py.pygments
|
|
py.schema
|
|
]))
|
|
pkgs.python3Packages.poetry
|
|
];
|
|
|
|
home-manager.users.me.xdg.configFile."pycodestyle".text = ''
|
|
[pycodestyle]
|
|
max-line-length = 110
|
|
'';
|
|
}
|