From 857aedca791232b3367c30aa7780cc12d7ae65fa Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 8 Dec 2024 16:41:48 -0600 Subject: [PATCH] WIP change args --- home.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/home.nix b/home.nix index 4c6951f..020d6d5 100644 --- a/home.nix +++ b/home.nix @@ -1,8 +1,7 @@ { - lib, - config, pkgs, - inputs, + systemSettings, + userSettings, ... }: let @@ -14,8 +13,8 @@ in programs.git = { enable = true; extraConfig.credential.helper = "store --file ~/.git-credentials"; - userName = "John Lancaster"; - userEmail = "32917998+jsl12@users.noreply.github.com"; + userName = "${userSettings.gitUserName}"; + userEmail = "${userSettings.gitUserEmail}"; extraConfig.safe.directory = "${homePath}"; };