mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 08:46:25 +00:00
13 lines
208 B
Nix
13 lines
208 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
programs.jujutsu = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
user = {
|
||
|
name = config.programs.git.userName;
|
||
|
email = config.programs.git.userEmail;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|