2.home-manager/tests/modules/programs/claude-code/agents-path.nix
Austin Horstman fb928abb67
Some checks are pending
/ triage (push) Waiting to run
GitHub Pages / publish (ubuntu-latest) (push) Waiting to run
tests/claude-code: add path tests for agents/commands
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-09-17 00:07:05 -05:00

14 lines
288 B
Nix

{
programs.claude-code = {
enable = true;
agents = {
test-agent = ./test-agent.md;
};
};
nmt.script = ''
assertFileExists home-files/.claude/agents/test-agent.md
assertFileContent home-files/.claude/agents/test-agent.md \
${./test-agent.md}
'';
}