mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
13 lines
264 B
Nix
13 lines
264 B
Nix
{
|
|
programs.claude-code = {
|
|
enable = true;
|
|
memory = {
|
|
source = ./expected-memory.md;
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.claude/CLAUDE.md
|
|
assertFileContent home-files/.claude/CLAUDE.md ${./expected-memory.md}
|
|
'';
|
|
}
|