dotfiles/modules/home/cli/development/tooling/python/default.nix
2025-07-30 16:44:31 -05:00

14 lines
176 B
Nix
Executable file

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