mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 15:11:03 +01:00
14 lines
288 B
Nix
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}
|
|
'';
|
|
}
|