Claude skills are only found when using `SKILL.md` entrypoints. Attribute names should be used for the directory structure, not the filename. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
14 lines
300 B
Nix
14 lines
300 B
Nix
{
|
|
programs.claude-code = {
|
|
enable = true;
|
|
skills = {
|
|
test-skill = ./test-skill.md;
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.claude/skills/test-skill/SKILL.md
|
|
assertFileContent home-files/.claude/skills/test-skill/SKILL.md \
|
|
${./test-skill.md}
|
|
'';
|
|
}
|