nix/home-manager/common/software/cli/atuin.nix

17 lines
380 B
Nix
Raw Normal View History

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-28 07:06:03 +02:00
sync_frequency = "0";
sync_address = "https://atuin.sysctl.io";
2024-04-28 06:39:08 +02:00
search_mode = "prefix";
2024-04-28 07:06:03 +02:00
secrets_filter = true;
2024-04-28 06:39:08 +02:00
};
};
}