mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
14 lines
310 B
Nix
14 lines
310 B
Nix
{
|
|
programs.claude-code = {
|
|
enable = true;
|
|
hooksDir = ./hooks;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.claude/hooks/test-hook
|
|
assertLinkExists home-files/.claude/hooks/test-hook
|
|
assertFileContent \
|
|
home-files/.claude/hooks/test-hook \
|
|
${./hooks/test-hook}
|
|
'';
|
|
}
|