nix-config/users/user/git.nix
2025-10-20 10:39:44 -03:00

17 lines
261 B
Nix

{ pkgs, ... }:
{
programs = {
git = {
enable = true;
settings.user = {
name = "William";
email = "baduhai@proton.me";
};
};
diff-so-fancy = {
enable = true;
enableGitIntegration = true;
};
};
}