nix-config

My personal nixos and home-manager configuration
Log | Files | Refs | README

commit 6a4cc48115c0a2759be37f28ae2a8f948cdc9557
parent 9e227f80e33b8f7bee7f582c5846befb87e82142
Author: benjamin paul <bpaul@bpaul.xyz>
Date:   Thu,  1 Jul 2021 18:17:52 +1000

Didn't test oops! askPass should have been core.askPass

Diffstat:
Mhome/modules/dev/git.nix | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/home/modules/dev/git.nix b/home/modules/dev/git.nix @@ -21,8 +21,10 @@ with lib; userName = "Benjamin Paul"; extraConfig = { - askPass = ""; - core.autocrlf = "input"; + core = { + askPass = ""; + autocrlf = "input"; + }; github.user = "GuyClicking"; help.autocorrect = 1; init.defaultBranch = "main";