mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 23:21:02 +01:00
14 lines
304 B
Nix
14 lines
304 B
Nix
{
|
|
programs.claude-code = {
|
|
enable = true;
|
|
commands = {
|
|
test-command = ./test-command.md;
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.claude/commands/test-command.md
|
|
assertFileContent home-files/.claude/commands/test-command.md \
|
|
${./test-command.md}
|
|
'';
|
|
}
|