2020-08-15 03:06:37 +02:00
|
|
|
{ config, pkgs, ... }:
|
2020-03-13 21:18:08 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
in
|
|
|
|
{
|
2020-08-15 03:06:37 +02:00
|
|
|
imports = [
|
|
|
|
./modules/git.nix
|
|
|
|
];
|
2020-03-13 21:18:08 +01:00
|
|
|
|
2020-08-15 03:06:37 +02:00
|
|
|
programs.git.custom = {
|
|
|
|
profiles = {
|
|
|
|
private = {
|
|
|
|
name = "Felix Tenley";
|
|
|
|
email = "dev@felschr.com";
|
|
|
|
signingKey = "6AB3 7A28 5420 9A41 82D9 0068 910A CB9F 6BD2 6F58";
|
|
|
|
dirs = [ "/etc/nixos/" ];
|
2020-08-15 00:10:53 +02:00
|
|
|
};
|
2020-08-15 03:06:37 +02:00
|
|
|
work = {
|
|
|
|
name = "Felix Schröter";
|
|
|
|
email = "fs@upsquared.com";
|
|
|
|
signingKey = "F28B FB74 4421 7580 5A49 2930 BE85 F0D9 987F A014";
|
|
|
|
dirs = [ "~/dev/" ];
|
2020-03-13 21:18:08 +01:00
|
|
|
};
|
|
|
|
};
|
2020-08-15 03:06:37 +02:00
|
|
|
defaultProfile = "private";
|
2020-03-13 21:18:08 +01:00
|
|
|
};
|
|
|
|
}
|