From 08d1ba523ac5a35e601877f1ebc3114f71012505 Mon Sep 17 00:00:00 2001 From: Scott Sorell Date: Sun, 10 May 2026 22:01:08 -0700 Subject: [PATCH] updated git options and a couple imports warning on build --- home.nix | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/home.nix b/home.nix index 049636d..a9d226b 100644 --- a/home.nix +++ b/home.nix @@ -12,7 +12,7 @@ bottom coreutils curl - du-dust + dust fd findutils fx @@ -73,7 +73,7 @@ ]; in { imports = [ - nix-index-database.hmModules.nix-index + nix-index-database.homeModules.nix-index ]; home.stateVersion = "25.11"; @@ -133,17 +133,29 @@ in { direnv.enable = true; direnv.nix-direnv.enable = true; - git = { - enable = true; - package = pkgs.unstable.git; - delta.enable = true; - delta.options = { + delta = { + enable = true; + options = { line-numbers = true; side-by-side = true; navigate = true; }; - userEmail = "scott.sorell@gmail.com"; # FIXME: set your git email - userName = "Scott Sorell"; #FIXME: set your git username + enableGitIntegration = true; + }; + + git = { + enable = true; + package = pkgs.unstable.git; + #delta.enable = true; + #delta.options = { + # line-numbers = true; + # side-by-side = true; + # navigate = true; + #}; + #userEmail = "scott.sorell@gmail.com"; # FIXME: set your git email + settings.user.email = "scott.sorell@gmail.com"; + #userName = "Scott Sorell"; #FIXME: set your git username + settings.user.name = "Scott Sorell"; extraConfig = { # FIXME: uncomment the next lines if you want to be able to clone private https repos # url = {