zellij and jujutsu changes

This commit is contained in:
iofq 2024-11-29 20:33:39 -06:00
parent 22cca03fec
commit afbaf19f1e
3 changed files with 16 additions and 2 deletions

View file

@ -1,4 +1,4 @@
_: {
{pkgs, ...}: {
programs.git = {
enable = true;
userEmail = "cjriddz@protonmail.com";
@ -27,4 +27,17 @@ _: {
rb = "rebase -i";
};
};
programs.jujutsu = {
enable = true;
settings = {
user = {
email = "cjriddz@protonmail.com";
name = "iofq";
};
ui = {
pager = "${pkgs.bat}/bin/bat";
default-command = ["log"];
};
};
};
}