diff options
-rw-r--r-- | git-commit-template | 9 | ||||
-rw-r--r-- | home.nix | 17 |
2 files changed, 26 insertions, 0 deletions
diff --git a/git-commit-template b/git-commit-template new file mode 100644 index 0000000..13f37b6 --- /dev/null +++ b/git-commit-template @@ -0,0 +1,9 @@ +# If applied, this commit will... + + +# Why was this change made? + + +# Any references to tickets, articles, etc? + + @@ -38,6 +38,23 @@ pkgs.youtube-dl ]; + programs.git = { + enable = true; + userName = "Ben Sima"; + userEmail = "ben@bsima.me"; + extraConfig = '' +[push] + default = simple +[branch "master] + remote = upstream + merge = refs/heads/master +[remote] + pushDefault = origin +[commit] + template = ~/.config/nixpkgs/git-commit-template + ''; + }; + programs.bash = { enable = true; shellAliases = { |