Readd python

This commit is contained in:
2026-02-13 23:35:59 +01:00
parent fb80be90c0
commit 8db6372a01
2 changed files with 25 additions and 2 deletions
+23
View File
@@ -0,0 +1,23 @@
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.home.env.python;
in
{
options.home.env.python = {
enable = mkEnableOption "Zen Editor options";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
python3
uv
];
};
}