1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 09:28:32 +02:00
home-manager/modules/programs/jujutsu.nix

77 lines
1.9 KiB
Nix
Raw Normal View History

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 = {
enable =
mkEnableOption "a Git-compatible DVCS that is both simple and powerful";
2023-01-27 22:15:17 +01: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";
};
}
'';
description = ''
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;
description = "Whether to enable Bash integration.";
2023-01-27 22:15:17 +01:00
};
enableZshIntegration = mkOption {
type = types.bool;
default = true;
description = "Whether to enable Zsh integration.";
2023-01-27 22:15:17 +01:00
};
enableFishIntegration = mkOption {
type = types.bool;
default = true;
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 ''
source <(${pkgs.jujutsu}/bin/jj util completion)
2023-01-27 22:15:17 +01:00
'';
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
2023-08-04 11:19:57 +02:00
source <(${pkgs.jujutsu}/bin/jj util completion --zsh)
2023-01-27 22:15:17 +01:00
compdef _jj ${pkgs.jujutsu}/bin/jj
'';
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration ''
${pkgs.jujutsu}/bin/jj util completion --fish | source
2023-01-27 22:15:17 +01:00
'';
};
}