feat: add basf git identity
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
parent
c54dce3817
commit
cc070c8c42
1 changed files with 18 additions and 16 deletions
|
|
@ -23,23 +23,25 @@ in
|
||||||
package = pkgs.gitAndTools.gitFull;
|
package = pkgs.gitAndTools.gitFull;
|
||||||
|
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
# extremely important, otherwise git will attempt to guess a default user identity. see `man git-config` for more details
|
user =
|
||||||
user.useConfigOnly = true;
|
let
|
||||||
|
name = "Lander Van den Bulcke";
|
||||||
|
signingKey = "CA5B1C34E649BF92";
|
||||||
|
|
||||||
# the `inuits` identity
|
mkIdentity = email: {
|
||||||
user.inuits.name = "Lander Van den Bulcke";
|
name = name;
|
||||||
user.inuits.email = "landervdb@inuits.eu";
|
signingKey = signingKey;
|
||||||
user.inuits.signingKey = "CA5B1C34E649BF92";
|
email = email;
|
||||||
|
};
|
||||||
# the `olly` identity
|
in
|
||||||
user.olly.name = "Lander Van den Bulcke";
|
{
|
||||||
user.olly.email = "landervdb@o11y.eu";
|
# extremely important, otherwise git will attempt to guess a default user identity. see `man git-config` for more details
|
||||||
user.olly.signingKey = "CA5B1C34E649BF92";
|
useConfigOnly = true;
|
||||||
|
personal = mkIdentity "landervandenbulcke@gmail.com";
|
||||||
# the `personal` identity
|
inuits = mkIdentity "landervdb@inuits.eu";
|
||||||
user.personal.name = "Lander Van den Bulcke";
|
olly = mkIdentity "landervdb@o11y.eu";
|
||||||
user.personal.email = "landervandenbulcke@gmail.com";
|
basf = mkIdentity "lander.van-den-bulcke@partners.basf.com";
|
||||||
user.personal.signingKey = "CA5B1C34E649BF92";
|
};
|
||||||
|
|
||||||
# editor
|
# editor
|
||||||
core.editor = "nvim";
|
core.editor = "nvim";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue