aboutsummaryrefslogtreecommitdiff
path: root/common/gitm.nix
diff options
context:
space:
mode:
authorrubiigen <alyxwren@proton.me>2024-04-23 22:01:32 +0100
committerFrankie B <frankieraybrown@gmail.com>2024-04-23 22:20:27 +0100
commita558df302bb8f218c79167b21c637a50db092c6f (patch)
tree9bcd3346cbd307e869ea390dcb089f4d637d5647 /common/gitm.nix
parent3d29e532d973a7dd0036ccdeee46774a4c6d6010 (diff)
remove common folder at root, why was this still there?
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
- };
-}