2023-01-27 22:15:17 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.jujutsu;
|
|
|
|
tomlFormat = pkgs.formats.toml { };
|
|
|
|
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ maintainers.shikanime ];
|
|
|
|
|
|
|
|
options.programs.jujutsu = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable =
|
|
|
|
mkEnableOption "a Git-compatible DVCS that is both simple and powerful";
|
2023-01-27 22:15:17 +01:00
|
|
|
|
2023-07-02 01:45:18 +02:00
|
|
|
package = mkPackageOption pkgs "jujutsu" { };
|
2023-01-27 22:15:17 +01:00
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = tomlFormat.type;
|
|
|
|
default = { };
|
|
|
|
example = literalExpression ''
|
|
|
|
{
|
|
|
|
user = {
|
|
|
|
name = "John Doe";
|
|
|
|
email = "jdoe@example.org";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
'';
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-07-01 01:30:13 +02:00
|
|
|
Options to add to the {file}`.jjconfig.toml` file. See
|
|
|
|
<https://github.com/martinvonz/jj/blob/main/docs/config.md>
|
2023-01-27 22:15:17 +01:00
|
|
|
for options.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
enableBashIntegration = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = "Whether to enable Bash integration.";
|
2023-01-27 22:15:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enableZshIntegration = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = "Whether to enable Zsh integration.";
|
2023-01-27 22:15:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enableFishIntegration = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = "Whether to enable Fish integration.";
|
2023-01-27 22:15:17 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
|
|
|
home.file.".jjconfig.toml" = mkIf (cfg.settings != { }) {
|
|
|
|
source = tomlFormat.generate "jujutsu-config" cfg.settings;
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
|
2023-07-19 20:33:38 +02:00
|
|
|
source <(${pkgs.jujutsu}/bin/jj util completion)
|
2023-01-27 22:15:17 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
|
2023-07-19 20:33:38 +02:00
|
|
|
source <(${pkgs.jujutsu}/bin/jj util completion --zsh | sed '$d')
|
2023-01-27 22:15:17 +01:00
|
|
|
compdef _jj ${pkgs.jujutsu}/bin/jj
|
|
|
|
'';
|
|
|
|
|
|
|
|
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration ''
|
2023-07-19 20:33:38 +02:00
|
|
|
${pkgs.jujutsu}/bin/jj util completion --fish | source
|
2023-01-27 22:15:17 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|