summary refs log tree commit diff stats
path: root/user/modules/satoshipay.nix
blob: 6feefbbb010b60381edeea589c1969a84823ad23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ config, pkgs, ... }:

let
  spGitConfig = {
    user.email = "alan@satoshipay.io";
  };
in
{
  programs.git.includes = [
    {
      condition = "gitdir:~/projects/github.com/satoshipay/";
      contents = spGitConfig;
    }
    {
      condition = "gitdir:~/projects/gitlab.satoshipay.tech";
      contents = spGitConfig;
    }
  ];
}