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 ];
|
|
|
|
|
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
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
|
|
|
home.file.".jjconfig.toml" = mkIf (cfg.settings != { }) {
|
|
|
|
source = tomlFormat.generate "jujutsu-config" cfg.settings;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|