2.home-manager/tests/modules/programs/opencode/empty-settings.nix
Jairo Llopis 082a4cd87c
Some checks failed
/ triage (push) Has been cancelled
GitHub Pages / publish (ubuntu-latest) (push) Has been cancelled
opencode: fix config file location
The file should be named `opencode.json`, not `config.json`.

Docs: https://opencode.ai/docs/config/#global

@moduon MT-13030
2026-01-23 10:55:49 -06:00

9 lines
162 B
Nix

{
programs.opencode = {
enable = true;
settings = { };
};
nmt.script = ''
assertPathNotExists home-files/.config/opencode/opencode.json
'';
}