--wip-- [skip ci]

This commit is contained in:
Filippo Berto 2025-09-08 11:36:45 +02:00
parent eea02abfcb
commit 762085707c
136 changed files with 261 additions and 261 deletions

View file

@ -1,26 +0,0 @@
{ pkgs
, lib
, config
, ...
}:
let
py = pkgs.python3;
pyPkgs = py.pkgs;
in
{
home.packages =
[
py
# pyPkgs.black
pkgs.ruff
]
++ lib.optionals config.programs.helix.enable (
(builtins.attrValues { inherit (pyPkgs) python-lsp-server pyls-flake8 pyls-isort; })
++ pyPkgs.python-lsp-server.optional-dependencies.all
)
++ lib.optionals config.programs.kakoune.enable (
(builtins.attrValues { inherit (pyPkgs) python-lsp-server pyls-flake8 pyls-isort; })
++ pyPkgs.python-lsp-server.optional-dependencies.all
);
}