jujutsu: init

This commit is contained in:
Casper V. Kristensen 2024-12-13 21:30:54 +01:00
parent da94044b5f
commit d0037124d5
2 changed files with 22 additions and 0 deletions

View file

@ -6,6 +6,7 @@
./hardware.nix
./home-manager.nix
./impermanence.nix
./jujutsu.nix
./locale.nix
./network.nix
./nix.nix

21
modules/base/jujutsu.nix Normal file
View file

@ -0,0 +1,21 @@
{
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";
};
};
};
};
}