Commit 91bf66617f62

Vincent Demeester <vincent@sbr.pm>
2025-05-05 14:45:59
home: add ai to dev
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent f02bffe
Changed files (2)
home
home/common/dev/ai.nix
@@ -0,0 +1,11 @@
+{ pkgs, ... }:
+{
+  home.packages = with pkgs; [
+    aichat
+    aider-chat
+    goose-cli
+    python312Packages.google-generativeai
+    python313Packages.google-generativeai
+    repomix
+  ];
+}
home/common/dev/base.nix
@@ -1,6 +1,7 @@
 { config, pkgs, ... }:
 {
   imports = [
+    ./ai.nix
     ./go.nix
     ./nix.nix
     ./python.nix