summaryrefslogtreecommitdiff
path: root/home/config/git.nix
blob: 02165e0b5a2354a52d34195bba45e1a3fc3390bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, ... }:

{
  programs.git = {
    enable = true;

    userName = "Quentin Aristote";
    userEmail = "quentin@aristote.fr";

    ignores = (builtins.map builtins.readFile
      (with pkgs.personal.gitignore; [ emacs linux direnv ])) ++ [
        ### Personal rules ###
        "shell.nix"
      ];
  };
}