1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-21 17:59:39 +01:00
home-manager/tests/modules/programs/codex/custom-instructions.nix
Thierry Delafontaine 427c96044f codex: init
2025-06-09 22:33:16 -05:00

14 lines
336 B
Nix

{
programs.codex = {
enable = true;
custom-instructions = ''
- Always respond with emojis
- Only use git commands when explicitly requested
'';
};
nmt.script = ''
assertFileExists home-files/.codex/AGENTS.md
assertFileContent home-files/.codex/AGENTS.md \
${./custom-instructions.md}
'';
}