17 lines
279 B
Nix
17 lines
279 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home-manager.users.toast = {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Toast";
|
|
userEmail = "toast003@tutamail.com";
|
|
delta.enable = true;
|
|
extraConfig = {
|
|
init.defaultBranch = "main";
|
|
commit.verbose = "true";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|