add jujutsu vcs
Some checks are pending
/ ci (push) Waiting to run

This commit is contained in:
Callum Leslie 2025-09-16 16:54:19 +01:00
parent bb08fe63c6
commit 19551022f0
Signed by: cleslie
GPG key ID: 5A944DF89B6F65AC
3 changed files with 60 additions and 52 deletions

View file

@ -4,6 +4,7 @@
./waybar
./git
./fish
./jj
./rofi
./rbw
./firefox

View file

@ -0,0 +1,23 @@
{lib, ...}: {
programs.jujutsu = {
enable = true;
settings = {
user = {
name = "Callum Leslie";
email = "git@cleslie.uk";
};
signing = {
behavior = "own";
backend = "gpg";
};
"--scope" = [
{
"--when".repositories = ["~/repos/projects.cs.nott.ac.uk"];
user = {
email = "psycl6@nottingham.ac.uk";
};
}
];
};
};
}