mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-25 02:10:57 +01:00
20 lines
441 B
Nix
20 lines
441 B
Nix
{
|
|
programs.claude-code = {
|
|
enable = true;
|
|
rules = {
|
|
test-rule = ./test-rule.md;
|
|
inline-rule = ''
|
|
# Inline Rule
|
|
|
|
This is an inline rule for testing.
|
|
'';
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.claude/rules/test-rule.md
|
|
assertFileContent home-files/.claude/rules/test-rule.md \
|
|
${./test-rule.md}
|
|
assertFileExists home-files/.claude/rules/inline-rule.md
|
|
'';
|
|
}
|