mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
38 lines
984 B
Nix
38 lines
984 B
Nix
{
|
|
programs.claude-code = {
|
|
enable = true;
|
|
commands = {
|
|
inline-command = ''
|
|
---
|
|
allowed-tools: Read
|
|
description: Inline command
|
|
---
|
|
This command is defined inline.
|
|
'';
|
|
path-command = ./test-command.md;
|
|
};
|
|
agents = {
|
|
inline-agent = ''
|
|
---
|
|
name: inline-agent
|
|
description: Inline agent
|
|
tools: Read
|
|
---
|
|
This agent is defined inline.
|
|
'';
|
|
path-agent = ./test-agent.md;
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.claude/commands/inline-command.md
|
|
assertFileExists home-files/.claude/commands/path-command.md
|
|
assertFileExists home-files/.claude/agents/inline-agent.md
|
|
assertFileExists home-files/.claude/agents/path-agent.md
|
|
|
|
assertFileContent home-files/.claude/commands/path-command.md \
|
|
${./test-command.md}
|
|
assertFileContent home-files/.claude/agents/path-agent.md \
|
|
${./test-agent.md}
|
|
'';
|
|
}
|