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

let
  spGitConfig = {
    user.email = "alan@satoshipay.io";
  };
in
{
  imports = [
    ./javascript.nix
  ];

  programs.git.includes = [
    {
      condition = "gitdir:~/projects/github.com/satoshipay/";
      contents = spGitConfig;
    }
    {
      condition = "gitdir:~/projects/gitlab.satoshipay.tech";
      contents = spGitConfig;
    }
  ];
}