17 lines
655 B
Nix
17 lines
655 B
Nix
{ pkgs, lib, config, ... }: {
|
|
home.packages = with pkgs; [
|
|
black
|
|
] ++ lib.optionals config.programs.helix.enable [
|
|
python3Packages.python-lsp-server # PYLSP
|
|
# python3Packages.pyls-mypy # MYPY # NOT UPDATED
|
|
python3Packages.pyls-flake8 # FLAKE8
|
|
# python3Packages.pyls-black # BLACK # NOT UPDATED
|
|
python3Packages.pyls-isort # ISORT
|
|
] ++ lib.optionals config.programs.kakoune.enable [
|
|
python3Packages.python-lsp-server # PYLSP
|
|
# python3Packages.pyls-mypy # MYPY # NOT UPDATED
|
|
python3Packages.pyls-flake8 # FLAKE8
|
|
# python3Packages.pyls-black # BLACK # NOT UPDATED
|
|
python3Packages.pyls-isort # ISORT
|
|
];
|
|
}
|