mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-04 08:01:02 +01:00
14 lines
332 B
Nix
14 lines
332 B
Nix
{
|
|
programs.claude-code = {
|
|
enable = true;
|
|
skillsDir = ./skills;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.claude/skills/test-skill.md
|
|
assertLinkExists home-files/.claude/skills/test-skill.md
|
|
assertFileContent \
|
|
home-files/.claude/skills/test-skill.md \
|
|
${./skills/test-skill.md}
|
|
'';
|
|
}
|