nix-dotfiles/home/programs/atuin.nix

23 lines
565 B
Nix
Raw Normal View History

2023-05-08 01:48:38 +02:00
{ config, ... }:
{
programs.atuin = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
settings = {
db_path = "${config.xdg.dataHome}/atuin/history.db";
key_path = "${config.xdg.configHome}/atuin/key";
session_path = "${config.xdg.configHome}/atuin/session_key";
dialect = "uk";
search_mode = "fuzzy";
style = "auto";
inline_height = 13;
2023-07-12 01:37:46 +02:00
sync_address = "https://atuin.nani.wtf";
sync_frequency = "1h";
auto_sync = true;
update_check = true;
2023-05-08 01:48:38 +02:00
};
};
}