mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
9 lines
170 B
Nix
9 lines
170 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
package = pkgs.gitFull;
|
|
userName = "ISnortPennies";
|
|
userEmail = "ISnortPennies@protonmail.com";
|
|
};
|
|
}
|