Add git config to home manager
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m39s

This commit is contained in:
2024-10-07 22:21:50 +02:00
parent 87deff0d7e
commit e5d71b6715
2 changed files with 24 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
{ 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;
};
};
}