Reduce test case setup to cover same logic branches. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
12 lines
332 B
Nix
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'
|
|
'';
|
|
}
|