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