From 55abee0819636e0706391a39abe399a63f36cf97 Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Mon, 12 Jun 2023 12:45:09 +0200 Subject: [PATCH] [nix] Set up the gh cli --- nix/hosts/alymac/git.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/nix/hosts/alymac/git.nix b/nix/hosts/alymac/git.nix index d7b2afa..136be7e 100644 --- a/nix/hosts/alymac/git.nix +++ b/nix/hosts/alymac/git.nix @@ -22,10 +22,17 @@ }; extraConfig = { - tag.gpgsign = true; init.defaultBranch = "master"; }; }; + programs.gh = { + enable = true; + # Why the *fuck* are these packages as opposed to GitHub links??? + extensions = with pkgs; [ + gh-actions-cache + ]; + }; + programs.gitui.enable = true; }