Compare commits

..

7 commits

Author SHA1 Message Date
6ba5ad7988 WIP: ADD NOTE FOR FUTURE SELF
Some checks failed
ci/woodpecker/push/check Pipeline failed
2025-10-20 13:55:57 +00:00
134ccd1805 homes: mousqueton: use system jujutsu
They have a custom `jj` with Piper CitC integration.
2025-10-20 13:55:29 +00:00
9b9c611097 homes: bazin: use system jujutsu
They have a custom `jj` with Piper CitC integration.
2025-10-20 13:55:29 +00:00
3d975fbed7 home: jujutsu: simplify 'jj jj' alias 2025-10-20 13:55:29 +00:00
4654c02625 home: jujutsu: explicitly create 'conf.d'
This is to serve as a reminder of _how_ to add a local configuration
file.
2025-10-20 13:55:29 +00:00
fcb4c7ff9e home: jj: use verbose draft commit messages 2025-10-20 13:55:29 +00:00
3992c862e9 home: delta: add 'jujutsu.enable' 2025-10-20 13:55:29 +00:00

View file

@ -50,6 +50,8 @@ in
};
};
# `jj log -p` does not use `delta`
# https://github.com/jj-vcs/jj/issues/4142
programs.jujutsu = lib.mkIf cfg.jujutsu.enable {
settings = {
merge-tools = {
@ -64,7 +66,7 @@ in
diff-formatter = ":git";
# `finalPackage` automatically applied `--config` if necessary
pager = [ config.programs.delta.finalPackage ];
pager = [ (lib.getExe config.programs.delta.finalPackage) ];
};
};
};