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;
|
||||
|
||||
extraConfig = {
|
||||
# extremely important, otherwise git will attempt to guess a default user identity. see `man git-config` for more details
|
||||
user.useConfigOnly = true;
|
||||
user =
|
||||
let
|
||||
name = "Lander Van den Bulcke";
|
||||
signingKey = "CA5B1C34E649BF92";
|
||||
|
||||
# the `inuits` identity
|
||||
user.inuits.name = "Lander Van den Bulcke";
|
||||
user.inuits.email = "landervdb@inuits.eu";
|
||||
user.inuits.signingKey = "CA5B1C34E649BF92";
|
||||
|
||||
# the `olly` identity
|
||||
user.olly.name = "Lander Van den Bulcke";
|
||||
user.olly.email = "landervdb@o11y.eu";
|
||||
user.olly.signingKey = "CA5B1C34E649BF92";
|
||||
|
||||
# the `personal` identity
|
||||
user.personal.name = "Lander Van den Bulcke";
|
||||
user.personal.email = "landervandenbulcke@gmail.com";
|
||||
user.personal.signingKey = "CA5B1C34E649BF92";
|
||||
mkIdentity = email: {
|
||||
name = name;
|
||||
signingKey = signingKey;
|
||||
email = email;
|
||||
};
|
||||
in
|
||||
{
|
||||
# extremely important, otherwise git will attempt to guess a default user identity. see `man git-config` for more details
|
||||
useConfigOnly = true;
|
||||
personal = mkIdentity "landervandenbulcke@gmail.com";
|
||||
inuits = mkIdentity "landervdb@inuits.eu";
|
||||
olly = mkIdentity "landervdb@o11y.eu";
|
||||
basf = mkIdentity "lander.van-den-bulcke@partners.basf.com";
|
||||
};
|
||||
|
||||
# editor
|
||||
core.editor = "nvim";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue