expand claude-code tool set

This commit is contained in:
Yan Lin 2026-02-17 18:26:32 +01:00
parent 2999d1f556
commit 68620b27eb
2 changed files with 8 additions and 0 deletions

View file

@ -144,6 +144,8 @@ in
home.packages = [ home.packages = [
pkgs.claude-code pkgs.claude-code
pkgs.poppler-utils pkgs.poppler-utils
pkgs.pandoc
pkgs.yq-go
]; ];
# Create global settings file (with permissions included) # Create global settings file (with permissions included)
@ -159,6 +161,8 @@ in
- Projects may use flake + direnv for project-specific runtimes - Projects may use flake + direnv for project-specific runtimes
- Common development tools (git, gh, ripgrep, jq, fzf, etc.) are globally available via nix - Common development tools (git, gh, ripgrep, jq, fzf, etc.) are globally available via nix
- PDF reading is supported (poppler-utils installed) - PDF reading is supported (poppler-utils installed)
- Document format conversion is supported (pandoc installed)
- YAML/TOML/XML processing is supported (yq-go installed)
''; '';
}; };
}; };

View file

@ -1,6 +1,10 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
home.packages = [
pkgs.gh
];
programs.git-credential-oauth = { programs.git-credential-oauth = {
enable = true; enable = true;
}; };