nix/shared/git.nix
2024-11-28 13:03:38 +01:00

11 lines
215 B
Nix

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