18 lines
359 B
Nix
18 lines
359 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
package = pkgs.git;
|
||
|
|
||
|
userName = "Tyler Beckman";
|
||
|
userEmail = "ty@myriation.xyz";
|
||
|
|
||
|
delta.enable = true;
|
||
|
lfs.enable = true;
|
||
|
|
||
|
signing = {
|
||
|
key = "A6299C20250223DCDEBA5E2C933B9437A97A56B8";
|
||
|
signByDefault = true;
|
||
|
};
|
||
|
};
|
||
|
}
|