Files
lxc-bootstrap/git.nix
John Lancaster 732ef13b69 added git stuff
2025-05-26 17:08:09 +00:00

10 lines
249 B
Nix

{ ... }:
{
home.stateVersion = "24.11";
programs.git = {
enable = true;
extraConfig.credential.helper = "store --file ~/.git-credentials";
userName = "John Lancaster";
userEmail = "32917998+jsl12@users.noreply.github.com";
};
}