summaryrefslogtreecommitdiff
path: root/seth/programs/git.nix
diff options
context:
space:
mode:
Diffstat (limited to 'seth/programs/git.nix')
-rw-r--r--seth/programs/git.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/seth/programs/git.nix b/seth/programs/git.nix
deleted file mode 100644
index 6164432..0000000
--- a/seth/programs/git.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ config, ...}:
-
-{
- programs.git = {
- enable = true;
- extraConfig = {
- init = { defaultBranch = "main"; };
- };
- signing = {
- key = "D31BD0D494BBEE86";
- signByDefault = true;
- };
- userEmail = "[email protected]";
- userName = "seth";
- };
-}