nix-config/modules/shell/git.nix
2023-10-14 18:53:32 +02:00

15 lines
231 B
Nix

{
config,
lib,
pkgs,
vars,
...
}: {
home-manager.users.${vars.user} = {
programs.git = {
enable = true;
userName = "GHOSCHT";
userEmail = "31184695+GHOSCHT@users.noreply.github.com";
};
};
}