nix/moduler/git.nix
2025-11-12 10:12:29 +01:00

16 lines
250 B
Nix

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