2.home-manager/tests/modules/programs/claude-code/commands-dir.nix

14 lines
352 B
Nix

{
programs.claude-code = {
enable = true;
commandsDir = ./commands;
};
nmt.script = ''
assertFileExists home-files/.claude/commands/test-command.md
assertLinkExists home-files/.claude/commands/test-command.md
assertFileContent \
home-files/.claude/commands/test-command.md \
${./commands/test-command.md}
'';
}