nix/home-manager/common/software/cli/atuin.nix
2024-04-28 13:39:08 +09:00

15 lines
350 B
Nix

{ ... }: {
programs.atuin = {
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
enableNushellIntegration = true;
enableZshIntegration = true;
settings = {
auto_sync = true;
sync_frequency = "5m";
sync_address = "framework-server:8888";
search_mode = "prefix";
};
};
}