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
+2 -2
View File
@@ -6,10 +6,10 @@
# Homebrew apps
os.homebrew.iterm.enable = true;
os.homebrew.zed.enable = true;
os.homebrew.jetbrain.enable = true;
os.homebrew.jetbrain.enable = false;
os.homebrew.iina.enable = true;
os.homebrew.zen.enable = true;
os.homebrew.obsidian.enable = true;
os.homebrew.microsoft.enable = true;
os.homebrew.microsoft.enable = false;
os.homebrew.keka.enable = true;
}
+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
];
};
}