Commit b3be679
Changed files (1)
home
base
tui
home/base/tui/github.nix
@@ -0,0 +1,17 @@
+{pkgs, ...}: {
+ programs.gh = {
+ enable = true;
+ settings = {
+ git_protocol = "ssh";
+ prompt = "enabled";
+ };
+ hosts = {
+ "github.com" = {
+ user = "HPCesia";
+ };
+ };
+ extensions = with pkgs; [
+ gh-copilot
+ ];
+ };
+}