8 lines
125 B
Nix
8 lines
125 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.jujutsu = {
|
|
enable = true;
|
|
};
|
|
|
|
xdg.configFile."jj/config.toml".source = ./config.toml;
|
|
}
|