Jafner.net/nix/home-manager/app/git/git.nix

16 lines
306 B
Nix
Raw Normal View History

{ ... }:
{
## Git
programs.git = {
enable = true;
userName = "Joey Hafner";
userEmail = "joey@jafner.net";
extraConfig = {
core.sshCommand = "ssh -i /home/joey/.ssh/joey@joey-laptop";
};
delta.enable = true;
delta.options = {
side-by-side = true;
};
};
}