1
0
Fork 0
dotfiles/home/programs/atuin.nix
2023-03-12 18:08:00 +01:00

27 lines
494 B
Nix

{ pkgs, lib, ... }:
{
programs.atuin = {
enable = true;
enableBashIntegration = false;
enableZshIntegration = false;
enableFishIntegration = true;
settings = {
auto_sync = true;
sync_address = "http://100.113.242.85:8015";
sync_frequency = "1h";
update_check = false;
style = "auto";
search_mode = "fuzzy";
filter_mode_shell_up_key_binding = "session";
history_filter = [
"^base64decode"
];
};
};
}