jj update from work

This commit is contained in:
iofq 2025-04-04 02:21:04 -05:00
parent 470b9379f5
commit d585a60e1d
2 changed files with 17 additions and 11 deletions

View file

@ -18,14 +18,6 @@
signByDefault = false; signByDefault = false;
}; };
extraConfig.pull.rebase = true; extraConfig.pull.rebase = true;
aliases = {
a = "add . -p";
s = "status";
f = "fetch";
d = "diff";
cm = "commit -m";
rb = "rebase -i";
};
}; };
programs.jujutsu = { programs.jujutsu = {
enable = true; enable = true;
@ -34,17 +26,25 @@
email = "cjriddz@protonmail.com"; email = "cjriddz@protonmail.com";
name = "iofq"; name = "iofq";
}; };
operation = {
username = "iofq";
};
ui = { ui = {
pager = "${pkgs.bat}/bin/bat";
default-command = ["log"]; default-command = ["log"];
conflict-marker-style = "git"; conflict-marker-style = "git";
merge-editor = "vimdiff"; merge-editor = "vimdiff";
diff.format = "git";
};
merge-tools.vimdiff = {
program = "nvim";
}; };
snapshot = { snapshot = {
max-new-file-size = "10MiB"; max-new-file-size = "10MiB";
}; };
git = { aliases = {
subprocess = true; tug = ["bookmark" "move" "--from" "heads(::@- & bookmarks())" "--to" "@"];
ne = ["next" "--edit"];
be = ["edit" "-r" "@-"];
}; };
}; };
}; };

View file

@ -44,6 +44,12 @@
hostname = "192.168.1.251"; hostname = "192.168.1.251";
identityFile = "/home/e/.ssh/id_ed25519"; identityFile = "/home/e/.ssh/id_ed25519";
}; };
"10110110.xyz" = {
port = 22;
hostname = "10110110.xyz";
user = "git";
identityFile = "/home/e/.ssh/id_ed25519";
};
}; };
}; };
fonts.fontconfig.enable = lib.mkForce true; fonts.fontconfig.enable = lib.mkForce true;