Commit b3be679

HPCesia <me@hpcesia.com>
2025-07-31 14:35:39
feat(app): add github cli
1 parent bc214b0
Changed files (1)
home
base
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
+    ];
+  };
+}