mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
517601b37c
Completion is installed by the jujutsu package itself, making this additional setup redundant. https://github.com/nix-community/home-manager/pull/5016#issuecomment-1947449541 https://github.com/nix-community/home-manager/pull/5037#pullrequestreview-1888843990
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.jujutsu;
|
|
tomlFormat = pkgs.formats.toml { };
|
|
|
|
in {
|
|
meta.maintainers = [ maintainers.shikanime ];
|
|
|
|
imports = let
|
|
mkRemovedShellIntegration = name:
|
|
mkRemovedOptionModule [ "programs" "jujutsu" "enable${name}Integration" ]
|
|
"This option is no longer necessary.";
|
|
in map mkRemovedShellIntegration [ "Bash" "Fish" "Zsh" ];
|
|
|
|
options.programs.jujutsu = {
|
|
enable =
|
|
mkEnableOption "a Git-compatible DVCS that is both simple and powerful";
|
|
|
|
package = mkPackageOption pkgs "jujutsu" { };
|
|
|
|
settings = mkOption {
|
|
type = tomlFormat.type;
|
|
default = { };
|
|
example = literalExpression ''
|
|
{
|
|
user = {
|
|
name = "John Doe";
|
|
email = "jdoe@example.org";
|
|
};
|
|
}
|
|
'';
|
|
description = ''
|
|
Options to add to the {file}`.jjconfig.toml` file. See
|
|
<https://github.com/martinvonz/jj/blob/main/docs/config.md>
|
|
for options.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [ cfg.package ];
|
|
|
|
home.file.".jjconfig.toml" = mkIf (cfg.settings != { }) {
|
|
source = tomlFormat.generate "jujutsu-config" cfg.settings;
|
|
};
|
|
};
|
|
}
|