Torjus Håkestad
e5d71b6715
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m39s
16 lines
248 B
Nix
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;
|
|
};
|
|
};
|
|
}
|