Commit 6cda10cb8518

Vincent Demeester <vincent@sbr.pm>
2026-07-02 23:19:56
refactor: trim editors and unused packages
Removed the helix editor config, vscode-fhs from the desktop dev profile, and antigravity-cli from the AI agents list.
1 parent 503e894
Changed files (3)
home/common/dev/ai.nix
@@ -90,7 +90,6 @@ in
     # AI coding agents (from numtide/llm-agents.nix)
     llm-agents.claude-code
     llm-agents.claude-agent-acp
-    llm-agents.antigravity-cli
     llm-agents.gemini-cli
     llm-agents.opencode
     llm-agents.pi
home/common/dev/desktop.nix
@@ -1,10 +1,6 @@
-{ pkgs, ... }:
+{ ... }:
 {
   imports = [
     ./emacs.nix
   ];
-
-  home.packages = with pkgs; [
-    vscode-fhs
-  ];
 }
home/common/shell/default.nix
@@ -22,24 +22,6 @@
     jq.enable = true;
   };
 
-  programs.helix = {
-    enable = true;
-    settings = {
-      theme = "modus_vivendi";
-      editor.cursor-shape = {
-        normal = "block";
-        insert = "bar";
-        select = "underline";
-      };
-    };
-    languages.language = [
-      {
-        name = "nix";
-        auto-format = true;
-        formatter.command = "${pkgs.nixfmt}/bin/nixfmt";
-      }
-    ];
-  };
   home.packages = with pkgs; [
     age
     mosh