Configurable JJ

This commit is contained in:
Leonora Tindall 2025-01-12 17:31:28 -06:00
parent 4431dda011
commit d43b0c3616
5 changed files with 14 additions and 2 deletions

View File

@ -15,6 +15,7 @@ in
./direnv.nix ./direnv.nix
./syncthing.nix ./syncthing.nix
./fzf.nix ./fzf.nix
./jj.nix
./packages.nix ./packages.nix
]; ];

12
jj.nix Normal file
View File

@ -0,0 +1,12 @@
{ config, pkgs, ...}:
{
programs.jujutsu = {
enable = true;
settings = {
user = {
email = "nora@nora.codes";
name = "Leonora Tindall";
};
};
};
}

View File

@ -13,7 +13,6 @@
dfc dfc
yt-dlp yt-dlp
(pkgs.callPackage ./custom/fortune-kind-custom.nix {}) (pkgs.callPackage ./custom/fortune-kind-custom.nix {})
jujutsu
fend fend
timg timg
graphviz graphviz

View File

@ -40,7 +40,6 @@ in
yt-dlp yt-dlp
(pkgs.callPackage ./custom/fortune-kind-custom.nix {}) (pkgs.callPackage ./custom/fortune-kind-custom.nix {})
(nixGL aseprite) (nixGL aseprite)
jujutsu
(nixGL musescore) (nixGL musescore)
fend fend
timg timg

View File

@ -15,6 +15,7 @@ in
./syncthing.nix ./syncthing.nix
./fzf.nix ./fzf.nix
./zellij.nix ./zellij.nix
./jj.nix
./packages-min.nix ./packages-min.nix
]; ];