feat(horsch): add github cli client

main
mandlm 2024-07-31 07:37:52 +02:00
parent a63ea4fbea
commit 289c2fbe65
Signed by: mandlm
GPG Key ID: 088ED38F036C7AF2
2 changed files with 12 additions and 0 deletions

View File

@ -19,6 +19,7 @@
./horsch/ssh.nix ./horsch/ssh.nix
./horsch/zsh.nix ./horsch/zsh.nix
./horsch/github.nix
./horsch/qemu.nix ./horsch/qemu.nix
]; ];

11
horsch/github.nix Normal file
View File

@ -0,0 +1,11 @@
{ ... }:
{
programs.gh = {
enable = true;
settings = {
git_protocol = "ssh";
};
};
}