nix/moduler/git.nix
2025-09-19 16:57:04 +02:00

16 lines
251 B
Nix

{ pkgs, lib, ... }:
{
programs.git = {
enable = true;
config = {
user = {
name = "fwastring";
email = "fredrik@wastring.com";
};
pull = {
rebase = false;
};
url."git@github.com:".insteadOf = "https://github.com/";
};
};
}