Files
home-manager/tests/modules/programs/pi-coding-agent/context-inline.nix
T

17 lines
360 B
Nix

{
programs.pi-coding-agent = {
enable = true;
context = ''
# Global Pi Context
Always use TypeScript strict mode.
Follow the project's existing code style.
'';
};
nmt.script = ''
assertFileExists home-files/.pi/agent/AGENTS.md
assertFileContent home-files/.pi/agent/AGENTS.md \
${./context-inline.md}
'';
}