Readd python
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Vendored
+23
@@ -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
|
||||
];
|
||||
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user