mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-12 00:02:49 +00:00
14 lines
294 B
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}
|
|
'';
|
|
}
|