dotfiles/nix/home/programs/jj/default.nix
2024-02-17 10:03:49 -08:00

8 lines
125 B
Nix

{ pkgs, ... }:
{
programs.jujutsu = {
enable = true;
};
xdg.configFile."jj/config.toml".source = ./config.toml;
}