1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 00:21:04 +01:00
home-manager/tests/modules/programs/claude-code/skills-path.nix

14 lines
288 B
Nix

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