mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +00:00
20 lines
415 B
Nix
20 lines
415 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
delta = {
|
|
enable = true;
|
|
};
|
|
signing = {
|
|
# gpgPath = "${pkgs.gpg.outPath}";
|
|
key = "C3DE5DF6198DACBD";
|
|
signByDefault = true;
|
|
};
|
|
extraConfig.init.defaultBranch = "master";
|
|
extraConfig.core.autocrlf = false;
|
|
package = pkgs.gitAndTools.gitFull;
|
|
userName = "willemml";
|
|
userEmail = "willem@leit.so";
|
|
};
|
|
}
|