diff --git a/horsch.nix b/horsch.nix index 9769b64..6599cec 100644 --- a/horsch.nix +++ b/horsch.nix @@ -19,6 +19,7 @@ ./horsch/ssh.nix ./horsch/zsh.nix + ./horsch/github.nix ./horsch/qemu.nix ]; diff --git a/horsch/github.nix b/horsch/github.nix new file mode 100644 index 0000000..2015359 --- /dev/null +++ b/horsch/github.nix @@ -0,0 +1,11 @@ +{ ... }: + +{ + programs.gh = { + enable = true; + + settings = { + git_protocol = "ssh"; + }; + }; +}