dotfiles/modules/home/cli/development/tooling/python/default.nix

15 lines
180 B
Nix
Raw Normal View History

2025-10-01 19:51:55 -05:00
{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
# python314
;
inherit (pkgs.python313Packages)
# venvShellHook
;
};
}