1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-02 23:21:02 +01:00
home-manager/tests/modules/programs/codex/custom-instructions.nix
Thierry Delafontaine 502d9b7d30
codex: starting with v0.2.0 codex uses a TOML configuration file (#7388)
Updated related settings and test files to reflect the new format.
2025-07-06 08:58:22 -05:00

14 lines
323 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 \
${./AGENTS.md}
'';
}