Update git config to correct includes

This commit is contained in:
2025-03-01 13:02:47 +01:00
parent b2bc33561a
commit 290b6d4447

View File

@@ -22,19 +22,23 @@
fetch = { prune = true; }; fetch = { prune = true; };
}; };
lfs.enable = true;
includes = [ includes = [
{ {
condition = "gitdir:~/git.noahknegt.com"; condition = "gitdir:~/Repos/git.noahknegt.com/";
path = "~/.config/git/git.noahknegt.com.gitconfig";
contents = { contents = {
userEmail = "git@noahknegt.com"; user = {
email = "git@noahknegt.com";
};
}; };
} }
{ {
condition = "gitdir:~/open-source"; condition = "gitdir:~/Repos/open-source/";
path = "~/.config/git/open-source.gitconfig";
contents = { contents = {
userEmail = "git@noahknegt.com"; user = {
email = "git@noahknegt.com";
};
}; };
} }
]; ];