mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
15 lines
275 B
Nix
15 lines
275 B
Nix
{pkgs, ...}: {
|
|
programs.git = {
|
|
enable = true;
|
|
package = pkgs.gitMinimal;
|
|
config = {
|
|
user = {
|
|
name = "ISnortPennies";
|
|
email = "ISnortPennies@protonmail.com";
|
|
};
|
|
init = {
|
|
defaultBranch = "master";
|
|
};
|
|
};
|
|
};
|
|
}
|