mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
22 lines
474 B
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}
|
|
'';
|
|
}
|