mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-08 05:49:25 -06:00
15 lines
180 B
Nix
15 lines
180 B
Nix
|
|
{
|
||
|
|
pkgs,
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
{
|
||
|
|
home.packages = builtins.attrValues {
|
||
|
|
inherit (pkgs)
|
||
|
|
# python314
|
||
|
|
;
|
||
|
|
inherit (pkgs.python313Packages)
|
||
|
|
# venvShellHook
|
||
|
|
;
|
||
|
|
};
|
||
|
|
}
|