old
1{pkgs, ...}: {
2 programs.gh = {
3 enable = true;
4 settings = {
5 git_protocol = "ssh";
6 prompt = "enabled";
7 };
8 hosts = {
9 "github.com" = {
10 user = "HPCesia";
11 };
12 };
13 extensions = with pkgs; [
14 gh-copilot
15 ];
16 };
17}