aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/opencode.nix
blob: 266562f0b0d55f8c64aff849940b987f5aeb8771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  flake.modules.homeManager.opencode =
    { ... }:
    {
      programs.opencode = {
        enable = true;
        settings = {
          theme = "system";
          share = "disabled";
          autoupdate = false;
        };
      };
    };
}