better concatenation of var packages

This commit is contained in:
2025-05-28 09:06:19 -06:00
parent a9edd30f02
commit 8497c3fa69
3 changed files with 34 additions and 40 deletions

View File

@@ -20,14 +20,13 @@ let
;
}
);
packages =
[ python ]
++ builtins.attrValues {
inherit (pkgs)
pipenv # python development workflow for humans
pyright # LSP
;
};
packages = builtins.attrValues {
inherit python;
inherit (pkgs)
pipenv # python development workflow for humans
pyright # LSP
;
};
in
{
options = {