mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 03:29:20 +00:00
23 lines
453 B
Nix
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";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|