diff options
Diffstat (limited to 'modules/hm/git.nix')
| -rw-r--r-- | modules/hm/git.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/hm/git.nix b/modules/hm/git.nix new file mode 100644 index 0000000..dc11881 --- /dev/null +++ b/modules/hm/git.nix @@ -0,0 +1,11 @@ +{ ... }: +{ + programs.git = { + enable = true; + settings = { + user.name = "adikro"; + user.email = "adikro@disroot.org"; + init.defaultBranch = "main"; + }; + }; +} |
