20 lines
316 B
Nix
20 lines
316 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
delta.enable = true;
|
|
|
|
userName = "Noah Knegt";
|
|
userEmail = "personal@noahknegt.com";
|
|
|
|
extraConfig = {
|
|
push = { autoSetupRemote = true; };
|
|
pull = { rebase = true; };
|
|
fetch = { prune = true; };
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
];
|
|
} |