19 lines
377 B
Nix
19 lines
377 B
Nix
{ ... } : {
|
|
home.file.".config/opencode/opencode.jsonc" = {
|
|
text = ''
|
|
{
|
|
"$schema": "https://opencode.ai/config.json",
|
|
"permission": {
|
|
"edit": "ask",
|
|
"webfetch": "ask",
|
|
"bash": {
|
|
"git status": "allow",
|
|
"git diff": "allow",
|
|
"ls": "allow",
|
|
"pwd": "allow"
|
|
}
|
|
}
|
|
}
|
|
'';
|
|
};
|
|
}
|