11 lines
215 B
Nix
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/";
|
|
};
|
|
};
|
|
}
|