updated git options and a couple imports warning on build
This commit is contained in:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user