nixos-config/modules/home-manager/git.nix
2024-07-02 17:03:17 +09:00

11 lines
176 B
Nix

{ pkgs, ... }:
# https://nixos.wiki/wiki/Git
{
programs.git = {
enable = true;
userName = "Isshi0417";
userEmail = "isshi0417@gmail.com";
};
}