15 lines
200 B
Nix
15 lines
200 B
Nix
{ ... }: {
|
|
programs.git = {
|
|
enable = true;
|
|
};
|
|
|
|
home.file.".gitconfig".text = ''
|
|
[user]
|
|
email = git@kat.cafe
|
|
name = noe
|
|
[push]
|
|
autoSetupRemote = true
|
|
[init]
|
|
defaultBranch = main
|
|
'';
|
|
}
|