mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
11 lines
157 B
Nix
11 lines
157 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
settings.user = {
|
|
name = "Superredstone";
|
|
email = "patrickcanal3@gmail.com";
|
|
};
|
|
};
|
|
}
|