summaryrefslogtreecommitdiff
path: root/users/kassouni/git.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/kassouni/git.nix')
-rw-r--r--users/kassouni/git.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/users/kassouni/git.nix b/users/kassouni/git.nix
new file mode 100644
index 0000000..03579cd
--- /dev/null
+++ b/users/kassouni/git.nix
@@ -0,0 +1,14 @@
+{ ... }: {
+ programs.git = {
+ enable = true;
+ settings = {
+ user = {
+ name = "Alexander Kassouni";
+ email = "alex@kassouni.net";
+ };
+ init = {
+ defaultBranch = "main";
+ };
+ };
+ };
+}