nix/home-manager/common/software/cli/atuin.nix
2024-04-30 11:42:53 +09:00

20 lines
537 B
Nix

{ config, ... }: {
programs.atuin = {
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
enableNushellIntegration = true;
enableZshIntegration = true;
settings = {
auto_sync = true;
sync_frequency = "10s";
sync_address = "https://atuin.sysctl.io";
search_mode = "fuzzy";
search_mode_shell_up_key_binding = "fuzzy";
secrets_filter = true;
key_path = "/run/secrets/atuin_key";
filter_mode = "global";
workspaces = true;
};
};
}