10 lines
204 B
Nix
10 lines
204 B
Nix
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
black
|
|
] ++ (with pkgs.python3Packages; [
|
|
python-lsp-server
|
|
# pyls-black # not updated to the new pylsp
|
|
pyls-flake8
|
|
pyls-isort
|
|
]);
|
|
}
|