nix/shared/git.nix
2024-07-15 14:10:10 +02:00

11 lines
213 B
Nix

{ pkgs, lib, ... }:
{
programs.git = {
enable = true;
userName = "FredzyW";
userEmail = "fredrik@wastring.com";
extraConfig = {
url."git@github.com:".insteadOf = "https://github.com/";
};
};
}