[home-work] Fix remaining conflicts

claude and other ai tools should follow standard install process on work machines
This commit is contained in:
2025-09-30 08:36:36 -07:00
parent 2b7cf66e69
commit 47c4e0097e
2 changed files with 9 additions and 10 deletions

View File

@@ -12,8 +12,8 @@ in
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = with pkgs; [ home.packages = with pkgs; [
# Core CLI utilities
fd fd
glances
gzip gzip
htop htop
killall killall
@@ -21,12 +21,7 @@ in
ncdu ncdu
shellcheck shellcheck
tmux tmux
tree
# Development/automation tools that are widely used
claude-code
codex
goose-cli
pandoc
]; ];
# Essential programs everyone needs # Essential programs everyone needs
@@ -63,11 +58,11 @@ in
programs.ssh = { programs.ssh = {
enable = true; enable = true;
addKeysToAgent = "yes";
matchBlocks = { matchBlocks = {
"nucdeb1" = { "nucdeb1" = {
hostname = "nucdeb1.oglehome"; hostname = "nucdeb1.oglehome";
user = "root"; user = "root";
addKeysToAgent = "yes";
}; };
}; };
}; };
@@ -83,4 +78,4 @@ in
# Note: modules must be imported at top-level home config # Note: modules must be imported at top-level home config
}; };
} }

View File

@@ -12,6 +12,10 @@ in
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = [ home.packages = [
claude-code
codex
goose-cli
# Custom packages # Custom packages
customPkgs.tea-rbw customPkgs.tea-rbw
]; ];
@@ -20,4 +24,4 @@ in
# Note: modules must be imported at top-level home config # Note: modules must be imported at top-level home config
}; };
} }