global/git: setup gh through options

This commit is contained in:
Infinidoge 2025-01-07 14:51:52 -05:00
parent fad96230fe
commit 079e151bb3
Signed by: Infinidoge
SSH key fingerprint: SHA256:GT2StvPQMMfFHyiiFJymQxfTG/z6EWLJ6NWItf5K5sA

View file

@ -1,7 +1,6 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
gh
git-absorb git-absorb
git-crypt git-crypt
git-agecrypt git-agecrypt
@ -96,4 +95,11 @@
e = "edit"; e = "edit";
}; };
}; };
programs.gh = {
enable = true;
settings = {
git_protocol = "ssh";
};
};
} }