2024-05-07 13:48:58 +02:00
|
|
|
{ config, username, ... }: {
|
2024-04-28 06:39:08 +02:00
|
|
|
programs.atuin = {
|
|
|
|
enable = true;
|
|
|
|
enableBashIntegration = true;
|
|
|
|
enableFishIntegration = true;
|
|
|
|
enableNushellIntegration = true;
|
|
|
|
enableZshIntegration = true;
|
|
|
|
settings = {
|
|
|
|
auto_sync = true;
|
2024-04-29 02:00:46 +02:00
|
|
|
sync_frequency = "10s";
|
2024-04-28 07:06:03 +02:00
|
|
|
sync_address = "https://atuin.sysctl.io";
|
2024-04-29 01:08:53 +02:00
|
|
|
search_mode = "fuzzy";
|
2024-04-28 15:06:30 +02:00
|
|
|
search_mode_shell_up_key_binding = "fuzzy";
|
2024-04-28 07:06:03 +02:00
|
|
|
secrets_filter = true;
|
2024-05-07 13:48:58 +02:00
|
|
|
key_path = "/run/secrets/${username}/atuin_key";
|
2024-04-29 02:00:46 +02:00
|
|
|
filter_mode = "global";
|
|
|
|
workspaces = true;
|
2024-05-01 15:08:19 +02:00
|
|
|
inline_height = 75;
|
2024-04-28 06:39:08 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|