Files
home-manager/tests/modules/programs/opencode/tools-path.nix

14 lines
294 B
Nix

{
programs.opencode = {
enable = true;
tools = {
test-tool = ./test-tool.ts;
};
};
nmt.script = ''
assertFileExists home-files/.config/opencode/tools/test-tool.ts
assertFileContent home-files/.config/opencode/tools/test-tool.ts \
${./test-tool.ts}
'';
}