2021-10-05 23:05:22 +02:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.atuin;
|
|
|
|
|
|
|
|
tomlFormat = pkgs.formats.toml { };
|
|
|
|
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ maintainers.hawkw ];
|
|
|
|
|
|
|
|
options.programs.atuin = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "atuin";
|
2021-10-05 23:05:22 +02:00
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.atuin;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.atuin";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = "The package to use for atuin.";
|
2021-10-05 23:05:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enableBashIntegration = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2021-10-05 23:05:22 +02:00
|
|
|
Whether to enable Atuin's Bash integration. This will bind
|
2023-07-01 01:30:13 +02:00
|
|
|
`ctrl-r` to open the Atuin history.
|
2021-10-05 23:05:22 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2023-07-01 09:48:09 +02:00
|
|
|
enableZshIntegration = mkOption {
|
|
|
|
type = types.bool;
|
2021-10-05 23:05:22 +02:00
|
|
|
default = true;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2021-10-05 23:05:22 +02:00
|
|
|
Whether to enable Atuin's Zsh integration.
|
2023-07-01 01:30:13 +02:00
|
|
|
|
|
|
|
If enabled, this will bind `ctrl-r` and the up-arrow
|
2021-10-05 23:05:22 +02:00
|
|
|
key to open the Atuin history.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2022-01-20 23:07:29 +01:00
|
|
|
enableFishIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2022-01-20 23:07:29 +01:00
|
|
|
Whether to enable Atuin's Fish integration.
|
2023-07-01 01:30:13 +02:00
|
|
|
|
2022-01-20 23:07:29 +01:00
|
|
|
If enabled, this will bind the up-arrow key to open the Atuin history.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2023-03-15 11:52:48 +01:00
|
|
|
flags = mkOption {
|
|
|
|
default = [ ];
|
|
|
|
type = types.listOf types.str;
|
|
|
|
example = [ "--disable-up-arrow" "--disable-ctrl-r" ];
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-03-15 11:52:48 +01:00
|
|
|
Flags to append to the shell hook.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-10-05 23:05:22 +02:00
|
|
|
settings = mkOption {
|
|
|
|
type = with types;
|
|
|
|
let
|
|
|
|
prim = oneOf [ bool int str ];
|
|
|
|
primOrPrimAttrs = either prim (attrsOf prim);
|
|
|
|
entry = either prim (listOf primOrPrimAttrs);
|
|
|
|
entryOrAttrsOf = t: either entry (attrsOf t);
|
|
|
|
entries = entryOrAttrsOf (entryOrAttrsOf entry);
|
|
|
|
in attrsOf entries // { description = "Atuin configuration"; };
|
|
|
|
default = { };
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2021-10-05 23:05:22 +02:00
|
|
|
{
|
|
|
|
auto_sync = true;
|
|
|
|
sync_frequency = "5m";
|
|
|
|
sync_address = "https://api.atuin.sh";
|
|
|
|
search_mode = "prefix";
|
|
|
|
}
|
|
|
|
'';
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2021-10-05 23:05:22 +02:00
|
|
|
Configuration written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/atuin/config.toml`.
|
|
|
|
|
|
|
|
See <https://atuin.sh/docs/config/> for the full list
|
2021-10-05 23:05:22 +02:00
|
|
|
of options.
|
|
|
|
'';
|
|
|
|
};
|
2023-04-03 15:48:47 +02:00
|
|
|
|
|
|
|
enableNushellIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-04-03 15:48:47 +02:00
|
|
|
Whether to enable Nushell integration.
|
|
|
|
'';
|
|
|
|
};
|
2021-10-05 23:05:22 +02:00
|
|
|
};
|
|
|
|
|
2023-03-15 11:52:48 +01:00
|
|
|
config = let flagsStr = escapeShellArgs cfg.flags;
|
|
|
|
in mkIf cfg.enable {
|
2021-10-05 23:05:22 +02:00
|
|
|
|
|
|
|
# Always add the configured `atuin` package.
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
|
|
|
# If there are user-provided settings, generate the config file.
|
|
|
|
xdg.configFile."atuin/config.toml" = mkIf (cfg.settings != { }) {
|
|
|
|
source = tomlFormat.generate "atuin-config" cfg.settings;
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
|
2022-02-19 05:20:00 +01:00
|
|
|
if [[ :$SHELLOPTS: =~ :(vi|emacs): ]]; then
|
|
|
|
source "${pkgs.bash-preexec}/share/bash/bash-preexec.sh"
|
2024-07-10 13:54:49 +02:00
|
|
|
eval "$(${lib.getExe cfg.package} init bash ${flagsStr})"
|
2022-02-19 05:20:00 +01:00
|
|
|
fi
|
2021-10-05 23:05:22 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
|
2022-02-19 05:20:00 +01:00
|
|
|
if [[ $options[zle] = on ]]; then
|
2024-07-10 13:54:49 +02:00
|
|
|
eval "$(${lib.getExe cfg.package} init zsh ${flagsStr})"
|
2022-02-19 05:20:00 +01:00
|
|
|
fi
|
2021-10-05 23:05:22 +02:00
|
|
|
'';
|
2022-01-20 23:07:29 +01:00
|
|
|
|
|
|
|
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration ''
|
2024-07-10 13:54:49 +02:00
|
|
|
${lib.getExe cfg.package} init fish ${flagsStr} | source
|
2022-01-20 23:07:29 +01:00
|
|
|
'';
|
2023-04-03 15:48:47 +02:00
|
|
|
|
|
|
|
programs.nushell = mkIf cfg.enableNushellIntegration {
|
|
|
|
extraEnv = ''
|
|
|
|
let atuin_cache = "${config.xdg.cacheHome}/atuin"
|
|
|
|
if not ($atuin_cache | path exists) {
|
|
|
|
mkdir $atuin_cache
|
|
|
|
}
|
2024-07-10 13:54:49 +02:00
|
|
|
${
|
|
|
|
lib.getExe cfg.package
|
|
|
|
} init nu ${flagsStr} | save --force ${config.xdg.cacheHome}/atuin/init.nu
|
2023-04-03 15:48:47 +02:00
|
|
|
'';
|
|
|
|
extraConfig = ''
|
|
|
|
source ${config.xdg.cacheHome}/atuin/init.nu
|
|
|
|
'';
|
|
|
|
};
|
2021-10-05 23:05:22 +02:00
|
|
|
};
|
|
|
|
}
|