aboutsummaryrefslogtreecommitdiff
path: root/common/gitm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'common/gitm.nix')
-rw-r--r--common/gitm.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/common/gitm.nix b/common/gitm.nix
deleted file mode 100644
index ef78829..0000000
--- a/common/gitm.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-_: {
- # enable programs
- programs = {
- git = {
- enable = true;
- userName = "beanigen";
- userEmail = "beanigit@protonmail.com";
- extraConfig = {
- commit.gpgsign = true;
- gpg.format = "ssh";
- user.signingkey = "~/.ssh/id_ed25519.pub";
- init.defaultBranch = "master";
- };
- };
- # ... add more programs as you see fit
- };
-}