1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/claude-code/memory-management.nix

22 lines
474 B
Nix

{
programs.claude-code = {
enable = true;
memory = {
text = ''
# Project Memory
## Current Task
Test implementation of memory management.
## Key Context
- This is a test configuration
- Memory should be created at ~/.claude/CLAUDE.md
'';
};
};
nmt.script = ''
assertFileExists home-files/.claude/CLAUDE.md
assertFileContent home-files/.claude/CLAUDE.md ${./expected-memory.md}
'';
}