This commit is contained in:
Bryan Ramos 2024-03-01 15:49:38 -05:00
parent 1d52958cde
commit 974f185b00
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
12 changed files with 168 additions and 7 deletions

View file

@ -3,10 +3,11 @@
# Replace symlink at root of repo with user configs
{
options = {
user = lib.mkOption {
user = lib.mkOption rec {
type = lib.types.attrs;
default = {
name = "bryan";
email = "bryan@ramos.codes";
shell = pkgs.bash;
groups = [
@ -20,7 +21,7 @@
gitConfig = {
userName = "Bryan Ramos";
userEmail = "bryan@ramos.codes";
userEmail = "${default.user.email}";
signing = {
key = "F1F3466458452B2DF351F1E864D12BA95ACE1F2D";
signByDefault = true;