fix 25.11

This commit is contained in:
soraefir
2026-01-04 10:19:52 +01:00
parent 57c94cd93e
commit ba72106b7f
4 changed files with 18 additions and 15 deletions

View File

@@ -2,14 +2,16 @@
programs.git = {
enable = true;
userEmail = "${config.usercfg.git.email}";
userName = "${config.usercfg.git.username}";
signing = {
key = "${config.usercfg.git.key}";
signByDefault = true;
};
ignores = [ "*result*" ".direnv" "node_modules" ];
extraConfig = { core.hooksPath = "./.dev/hooks"; };
settings = {
core.hooksPath = "./.dev/hooks";
user.email = "${config.usercfg.git.email}";
user.name = "${config.usercfg.git.username}";
};
};
home.packages = with pkgs; [ tig ];