Added git config

This commit is contained in:
Alejandro Angulo 2023-03-19 08:46:23 -07:00
parent 3192993253
commit e62903e640
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
3 changed files with 98 additions and 0 deletions

View file

@ -14,6 +14,16 @@ in {
default = "alejandro";
description = "The name to use for the user account.";
};
fullName = mkOption {
type = str;
default = "Alejandro Angulo";
description = "The full name of the user.";
};
email = mkOption {
type = str;
default = "iam@alejandr0angul0.dev";
description = "The email of the user.";
};
extraGroups = mkOption {
type = listOf str;
default = ["video" "networkmanager" "docker"];