18 lines
385 B
Nix
18 lines
385 B
Nix
{...}: {
|
|
home-manager.users.toast = {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Toast";
|
|
userEmail = "toast003@tutamail.com";
|
|
delta = {
|
|
enable = true;
|
|
catppuccin.enable = true;
|
|
};
|
|
extraConfig = {
|
|
init.defaultBranch = "main";
|
|
diff.colorMoved = "default";
|
|
commit.verbose = "true";
|
|
};
|
|
};
|
|
};
|
|
}
|