I am batman

This commit is contained in:
2026-07-10 20:07:29 -04:00
commit 4aac54bff6
175 changed files with 18136 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ config, lib, pkgs, ... }:
let
cfg = config.programs.opencode;
in
{
config = lib.mkIf cfg.enable {
home.packages = [ pkgs.gh ];
xdg.configFile."opencode/config.toml".text = ''
[ai]
provider = "github-copilot"
[ai.github]
auth = "gh"
'';
};
}