nixos/imports/git.nix
2023-02-07 20:19:15 -05:00

15 lines
275 B
Nix

{pkgs, ...}: {
programs.git = {
enable = true;
package = pkgs.gitMinimal;
config = {
user = {
name = "ISnortPennies";
email = "ISnortPennies@protonmail.com";
};
init = {
defaultBranch = "master";
};
};
};
}