blob: baf3aaa19a74c46e9cc070a500611e4ddb3a3a49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#+title: Git Configuration
Specify my name and email for =git=. Also enable =delta= and =pull.rebase=.
#+begin_src nix :tangle ~/.flake/home/programs/git.nix :mkdirp yes
{ config, pkgs, ... }:
{
programs.git = {
enable = true;
userName = "Jacob Janzen";
userEmail = "jacob.a.s.janzen@gmail.com";
delta.enable = true;
extraConfig = {
pull.rebase = true;
};
};
}
#+end_src
|