summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--darwin-common.nix1
-rw-r--r--hosts/kenosis/configuration.nix9
-rw-r--r--zsh.nix3
3 files changed, 13 insertions, 0 deletions
diff --git a/darwin-common.nix b/darwin-common.nix
index 9351cca..4624e9b 100644
--- a/darwin-common.nix
+++ b/darwin-common.nix
@@ -18,6 +18,7 @@
git
vim-full
senpai
+ wget
];
programs.zsh.enable = true;
diff --git a/hosts/kenosis/configuration.nix b/hosts/kenosis/configuration.nix
index 8c2df15..ffda55d 100644
--- a/hosts/kenosis/configuration.nix
+++ b/hosts/kenosis/configuration.nix
@@ -39,10 +39,16 @@
git
go-swag
blender
+ temporal-cli
+ corepack
+ direnv
(python313.withPackages (ps:
with ps; [
numpy
]))
+ imagemagick
+ audacity
+ goose
];
homebrew = {
@@ -64,6 +70,9 @@
"firefox"
"chatgpt"
"capcut"
+ "docker"
+ "musicbrainz-picard"
+ "gimp"
];
};
diff --git a/zsh.nix b/zsh.nix
index 4c8154a..8559a56 100644
--- a/zsh.nix
+++ b/zsh.nix
@@ -12,5 +12,8 @@
enableFzfCompletion = true;
enableFzfGit = true;
enableFzfHistory = true;
+ interactiveShellInit = ''
+ eval "$(direnv hook zsh)"
+ '';
};
}