devos/users/profiles/git/default.nix

14 lines
216 B
Nix
Raw Normal View History

2020-08-02 21:29:14 +02:00
{
programs.git = {
enable = true;
2022-09-08 11:45:42 +02:00
lfs.enable = true;
2020-08-02 21:29:14 +02:00
2020-12-20 01:42:55 +01:00
extraConfig = {
2021-05-03 14:06:00 +02:00
init.defaultBranch = "mistress";
pull.ff = "only";
2020-12-20 01:42:55 +01:00
};
2023-04-16 01:23:44 +02:00
userEmail = "git@badat.dev";
userName = "mae";
2020-08-02 21:29:14 +02:00
};
}