add python services

This commit is contained in:
2025-12-04 15:56:34 -05:00
parent c1bbe28b1f
commit c7bcefc03e
4 changed files with 28 additions and 15 deletions

11
users/python.nix Normal file
View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
home.packages = [
(pkgs.buildFHSEnv {
name = "pixi";
runScript = "pixi";
targetPkgs = pkgs: with pkgs; [ pixi ];
})
pkgs.uv
];
}