1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00

move more to config/packages

This commit is contained in:
Kierán Meinhardt
2019-08-18 19:41:52 +02:00
parent 7df07fc745
commit b64ec51224
5 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
{ 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.flask
py.pygments
py.docopt
py.schema
py.ansicolors
py.virtualenv
py.spacy
py.spacy_models
])
)
];
home-manager.users.me.xdg.configFile."pycodestyle".text = ''
[pycodestyle]
max-line-length = 110
'';
}