nix/moduler/git.nix
2025-09-06 13:18:48 +02: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/";
};
};
}