mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 23:21:02 +01:00
16 lines
376 B
Nix
16 lines
376 B
Nix
{
|
|
programs.opencode = {
|
|
enable = true;
|
|
settings = {
|
|
theme = "opencode";
|
|
model = "anthropic/claude-sonnet-4-20250514";
|
|
autoshare = false;
|
|
autoupdate = true;
|
|
};
|
|
};
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/opencode/config.json
|
|
assertFileContent home-files/.config/opencode/config.json \
|
|
${./config.json}
|
|
'';
|
|
}
|