This commit is contained in:
41666 2023-12-15 00:25:31 -05:00
parent ca4e157a76
commit 730fdbd2ce
9 changed files with 497 additions and 8 deletions

View file

@ -1,7 +1,13 @@
{ pkgs, ... }: {
programs.git = {
enable = true;
userName = "noe";
userEmail = "git@kat.cafe";
};
home.file.".gitignore".text = ''
[user]
email = git@kat.cafe
name = noe
[push]
autoSetupRemote = true
'';
}