14 lines
363 B
Nix
14 lines
363 B
Nix
|
{ config, pkgs, hostname, hmStateVersion, ... }: {
|
||
|
home.stateVersion = hmStateVersion;
|
||
|
|
||
|
programs.git = {
|
||
|
userName = "albert";
|
||
|
userEmail = "albert@sysctl.io";
|
||
|
extraConfig = {
|
||
|
core.askPass = "false";
|
||
|
credential.helper = "cache --timeout=25920000";
|
||
|
user.signingkey = "64F6C4EB46C4543A";
|
||
|
commit.gpgsign = "true";
|
||
|
};
|
||
|
};
|
||
|
}
|