1
0
Fork 0

Add WDW git config

This commit is contained in:
Daniel Kempkens 2022-01-01 01:06:30 +01:00
parent 7d55b8c4c1
commit 9c23d9b8b7
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,3 @@
[user]
email = "d.kempkens@wdw-consulting.com"
name = "Daniel Kempkens"

View file

@ -2,6 +2,7 @@
let
config-work-nedeco = "${config.xdg.configHome}/git/config-work-nedeco";
config-work-wdw = "${config.xdg.configHome}/git/config-work-wdw";
in
{
programs.git = {
@ -60,6 +61,11 @@ in
path = "${config-work-nedeco}";
condition = "gitdir:~/Code/Work/";
}
{
path = "${config-work-wdw}";
condition = "gitdir:~/Code/Work/WDW/";
}
];
delta.options = {
@ -68,4 +74,5 @@ in
};
home.file."${config-work-nedeco}".source = ../config/git/config-work-nedeco;
home.file."${config-work-wdw}".source = ../config/git/config-work-wdw;
}