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

{
  programs.git = {
    enable = true;

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

    ignores = builtins.map builtins.readFile (with pkgs.personal.gitignore; [
      emacs linux
    ]);
  };
}