expand claude-code tool set
This commit is contained in:
parent
2999d1f556
commit
68620b27eb
2 changed files with 8 additions and 0 deletions
|
|
@ -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)
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,10 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
home.packages = [
|
||||||
|
pkgs.gh
|
||||||
|
];
|
||||||
|
|
||||||
programs.git-credential-oauth = {
|
programs.git-credential-oauth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue