nixos/home/programs/git.nix

9 lines
152 B
Nix
Raw Normal View History

2024-02-17 13:45:15 +01:00
{ config, pkgs, ... }:
2023-08-20 00:56:28 +02:00
{
programs.git = {
enable = true;
userName = "Florian RICHER";
userEmail = "florian.richer@protonmail.com";
};
}