home: add jj config and add jj to home path

This commit is contained in:
Antoine Martin 2025-02-28 12:36:08 +01:00
parent 119954200e
commit e758c5f215
4 changed files with 80 additions and 1 deletions

8
home/jj.nix Normal file
View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
home.packages = [
pkgs.jujutsu
];
xdg.configFile = {
"jj/config.toml".source = ./jj/config.toml;
};
}