16 lines
380 B
Nix
16 lines
380 B
Nix
{ ... }: {
|
|
programs.atuin = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
enableFishIntegration = true;
|
|
enableNushellIntegration = true;
|
|
enableZshIntegration = true;
|
|
settings = {
|
|
auto_sync = true;
|
|
sync_frequency = "0";
|
|
sync_address = "https://atuin.sysctl.io";
|
|
search_mode = "prefix";
|
|
secrets_filter = true;
|
|
};
|
|
};
|
|
}
|