nixfiles/home/c/programs/jj/default.nix
Callum Leslie 19551022f0
Some checks are pending
/ ci (push) Waiting to run
add jujutsu vcs
2025-09-16 17:04:23 +01:00

23 lines
453 B
Nix

{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";
};
}
];
};
};
}