Update flake and fix breaking changes

This commit is contained in:
2025-10-14 10:29:28 +08:00
parent df1ae75e01
commit c1e172a194
3 changed files with 39 additions and 31 deletions

View File

@@ -41,6 +41,10 @@ in
jf = "jj git fetch";
jp = "jj git push";
};
programs.delta = {
enable = true;
enableGitIntegration = true;
};
programs.git = {
ignores = [
".DS_Store"
@@ -49,20 +53,25 @@ in
"**/.claude/settings.local.json"
];
enable = true;
userEmail = email;
userName = name;
delta.enable = true;
lfs.enable = true;
extraConfig = lib.mkMerge [
settings = lib.mkMerge [
{
init.defaultBranch = "main";
user = {
email = email;
name = name;
};
pull.rebase = true;
pull.autostash = true;
pull = {
rebase = true;
autostash = true;
};
rebase.autostash = true;
rebase.autosquash = true;
rebase = {
autostash = true;
autosquash = true;
};
push.autoSetupRemote = true;

View File

@@ -21,7 +21,6 @@ in
default = false;
description = "Enable performance options";
type = lib.types.bool;
};
};
@@ -264,7 +263,7 @@ in
treesitter-context.enable = true;
treesitter-textobjects = {
enable = true;
move = {
settings.move = {
enable = true;
gotoNextStart = {
"]m" = {