Jafner.net/nix/home-manager/app/git/git.nix
Joey Hafner bcb50ace24
Some checks failed
SSH and echo to file / ssh (push) Failing after 3s
Update from joey@joey-laptop: Modularize home-manager
2024-09-17 13:56:38 -07:00

16 lines
306 B
Nix

{ ... }:
{
## 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;
};
};
}