2.home-manager/tests/modules/programs/codex/empty-settings.nix
Austin Horstman 6f2cb27ea6 tests/codex: consolidate tests
Reduce test case setup to cover same logic branches.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2026-03-01 09:18:14 -06:00

12 lines
332 B
Nix

{
programs.codex = {
enable = true;
settings = { };
};
nmt.script = ''
assertPathNotExists home-files/.codex/config.toml
assertPathNotExists home-files/.codex/config.yaml
assertPathNotExists home-files/.codex/AGENTS.md
assertFileNotRegex home-path/etc/profile.d/hm-session-vars.sh 'CODEX_HOME'
'';
}