git: move tool install/config to git.nix
Alan Pearce alan@alanpearce.eu
Sat, 11 May 2024 15:29:52 +0200
2 files changed, 13 insertions(+), 14 deletions(-)
M user/settings/git.nix → user/settings/git.nix
@@ -89,7 +89,20 @@ ".\#*" ".tabnine_root" ]; }; + programs.gh = { + enable = true; + settings = { + git_protocol = "ssh"; + aliases = { + fork = "repo fork --remote --remote-name alanpearce --default-branch-only"; + }; + }; + }; home.packages = with pkgs; [ git-extras # delete-merged-branches and friends + ghq + delta + gitui + gitstatus ]; }
M user/settings/shell.nix → user/settings/shell.nix
@@ -141,22 +141,8 @@ ngc = "nix-collect-garbage --delete-older-than 30d"; sngc = "sudo nix-collect-garbage --delete-older-than 30d"; }; }; - programs.gh = { - enable = true; - settings = { - git_protocol = "ssh"; - aliases = { - fork = "repo fork --remote --remote-name fork --default-branch-only"; - }; - }; - }; home.packages = with pkgs; [ fzf - ghq - delta - git - gitui - gitstatus up ]; }