mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
15 lines
288 B
Nix
15 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}
|
|
'';
|
|
}
|