2023-01-27 22:15:17 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.jujutsu;
|
|
|
|
tomlFormat = pkgs.formats.toml { };
|
|
|
|
|
2024-07-28 22:54:29 +02:00
|
|
|
configDir = if pkgs.stdenv.isDarwin then
|
|
|
|
"Library/Application Support"
|
|
|
|
else
|
|
|
|
config.xdg.configHome;
|
|
|
|
|
2023-01-27 22:15:17 +01:00
|
|
|
in {
|
|
|
|
meta.maintainers = [ maintainers.shikanime ];
|
|
|
|
|
2024-02-19 15:15:12 +01:00
|
|
|
imports = let
|
|
|
|
mkRemovedShellIntegration = name:
|
|
|
|
mkRemovedOptionModule [ "programs" "jujutsu" "enable${name}Integration" ]
|
|
|
|
"This option is no longer necessary.";
|
|
|
|
in map mkRemovedShellIntegration [ "Bash" "Fish" "Zsh" ];
|
|
|
|
|
2023-01-27 22:15:17 +01:00
|
|
|
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
|
|
|
|
2024-05-07 12:25:03 +02:00
|
|
|
ediff = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = config.programs.emacs.enable;
|
|
|
|
defaultText = literalExpression "config.programs.emacs.enable";
|
|
|
|
description = ''
|
|
|
|
Enable ediff as a merge tool
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2023-01-27 22:15:17 +01:00
|
|
|
settings = mkOption {
|
|
|
|
type = tomlFormat.type;
|
|
|
|
default = { };
|
2024-03-31 19:57:00 +02:00
|
|
|
example = {
|
|
|
|
user = {
|
|
|
|
name = "John Doe";
|
|
|
|
email = "jdoe@example.org";
|
|
|
|
};
|
|
|
|
};
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2024-03-31 19:57:00 +02:00
|
|
|
Options to add to the {file}`config.toml` file. See
|
2023-07-01 01:30:13 +02:00
|
|
|
<https://github.com/martinvonz/jj/blob/main/docs/config.md>
|
2023-01-27 22:15:17 +01:00
|
|
|
for options.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
2024-07-28 22:54:29 +02:00
|
|
|
home.file."${configDir}/jj/config.toml" = mkIf (cfg.settings != { }) {
|
2024-05-07 12:25:03 +02:00
|
|
|
source = tomlFormat.generate "jujutsu-config" (cfg.settings
|
|
|
|
// optionalAttrs (cfg.ediff) (let
|
|
|
|
emacsDiffScript = pkgs.writeShellScriptBin "emacs-ediff" ''
|
|
|
|
set -euxo pipefail
|
|
|
|
${config.programs.emacs.package}/bin/emacsclient -c --eval "(ediff-merge-files-with-ancestor \"$1\" \"$2\" \"$3\" nil \"$4\")"
|
|
|
|
'';
|
|
|
|
in {
|
|
|
|
merge-tools.ediff = {
|
|
|
|
program = getExe emacsDiffScript;
|
|
|
|
merge-args = [ "$left" "$right" "$base" "$output" ];
|
|
|
|
};
|
|
|
|
}));
|
2023-01-27 22:15:17 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|