diff --git a/modules/shell/git.nix b/modules/shell/git.nix index 1508c8a..4d19487 100644 --- a/modules/shell/git.nix +++ b/modules/shell/git.nix @@ -6,18 +6,17 @@ ... }: { home-manager.users.${vars.user} = { + #Prefer IPv4 for ssh + home.file.".ssh/config".text = "AddressFamily inet"; + programs.git = { enable = true; userName = "GHOSCHT"; userEmail = "31184695+GHOSCHT@users.noreply.github.com"; extraConfig = { - # Sign all commits using ssh key commit.gpgsign = true; user.signingkey = "0x2C2C1C62A5388E82"; - # gpg.format = "ssh"; - # gpg.ssh.allowedSignersFile = "~/.ssh/allowed_signers"; - # user.signingkey = "~/.ssh/git.pub"; init.defaultBranch = "main"; }; };