nix/home-manager/users/root/default.nix
2023-08-23 21:19:35 +09:00

12 lines
No EOL
298 B
Nix

{ config, pkgs, ... }: {
programs.git = {
userName = "albert";
userEmail = "albert@sysctl.io";
extraConfig = {
core.askPass = "false";
credential.helper = "cache --timeout=25920000";
user.signingkey = "64F6C4EB46C4543A";
commit.gpgsign = "true";
};
};
}