mirror of
https://github.com/kmein/niveum
synced 2026-03-17 10:41:06 +01:00
modularize
This commit is contained in:
18
configs/python.nix
Normal file
18
configs/python.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [
|
||||
(pkgs.python3.withPackages
|
||||
(py: [
|
||||
py.black
|
||||
py.python-language-server
|
||||
py.pyls-mypy
|
||||
py.flake8
|
||||
])
|
||||
)
|
||||
];
|
||||
|
||||
home-manager.users.me.xdg.configFile."pycodestyle".text = ''
|
||||
[pycodestyle]
|
||||
max-line-length = 110
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user