feat(home): Enable jujutsu dvcs

This commit is contained in:
Alexander Kobjolke 2025-04-09 11:51:15 +02:00
parent 6ece8810d6
commit ce225f2f7d
2 changed files with 17 additions and 0 deletions

View file

@ -18,6 +18,7 @@ in
./programs/jq
./programs/fzf
./programs/git
./programs/jujutsu
./programs/shell
./programs/devenv.nix
];

View file

@ -0,0 +1,16 @@
{
config,
lib,
pkgs,
...
}:
{
programs.jujutsu = {
enable = true;
settings.user = {
name = config.programs.git.userName;
email = config.programs.git.userEmail;
};
};
}