nixos/home/programs/git/default.nix
Torjus Håkestad e5d71b6715
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m39s
Add git config to home manager
2024-10-07 22:21:50 +02:00

16 lines
248 B
Nix

{ pkgs, ... }:
{
programs.git = {
enable = true;
userName = "Torjus Håkestad";
userEmail = "torjus@usit.uio.no";
lfs.enable = true;
signing = {
key = "~/.ssh/id_ed25519.pub";
signByDefault = true;
};
};
}