2.home-manager/tests/modules/programs/codex/skills-inline-null-package.nix
Austin Horstman e0bcb05ce9 tests/codex: update skills tests
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2026-03-01 09:18:14 -06:00

19 lines
401 B
Nix

{
programs.codex = {
enable = true;
package = null;
skills = {
inline-skill = ''
# Inline Skill
'';
};
};
nmt.script = ''
assertFileExists home-files/.agents/skills/inline-skill/SKILL.md
assertFileContent home-files/.agents/skills/inline-skill/SKILL.md \
${builtins.toFile "expected-inline-skill.md" ''
# Inline Skill
''}
'';
}