dotfiles/modules/home/cli/development/tooling/python/default.nix
2025-10-01 19:51:55 -05:00

14 lines
180 B
Nix
Executable file

{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
# python314
;
inherit (pkgs.python313Packages)
# venvShellHook
;
};
}