nixos/modules/base/jujutsu.nix

22 lines
475 B
Nix
Raw Normal View History

2024-12-13 21:30:54 +01:00
{
nixpkgs-unstable,
pkgs,
...
}: {
# Jujutsu version control system.
# https://martinvonz.github.io/jj/
home-manager.users.caspervk = {
programs.jujutsu = {
enable = true;
package = nixpkgs-unstable.legacyPackages.${pkgs.system}.jujutsu;
# https://martinvonz.github.io/jj/latest/config/
settings = {
user = {
name = "Casper V. Kristensen";
email = "casper@vkristensen.dk";
};
};
};
};
}