Files
nixos/home/git.nix
2025-10-28 08:44:49 +01:00

11 lines
157 B
Nix

{ config, pkgs, ... }:
{
programs.git = {
enable = true;
settings.user = {
name = "Superredstone";
email = "patrickcanal3@gmail.com";
};
};
}