]> Git — Sourcephile - julm/julm-nix.git/blob - home-manager/profiles/jujutsu.nix
+funct/appro(jujutsu): init jj and jjui configs
[julm/julm-nix.git] / home-manager / profiles / jujutsu.nix
1 {
2 config,
3 lib,
4 pkgs-unstable,
5 ...
6 }:
7 {
8 home.packages = lib.mkIf config.programs.git.enable [
9 pkgs-unstable.gg-jj
10 pkgs-unstable.jjui
11 pkgs-unstable.jujutsu
12 ];
13 xdg.configFile."jj".source = jujutsu/jj;
14 xdg.configFile."jjui".source = jujutsu/jjui;
15 }