17 lines
276 B
Nix
17 lines
276 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
programs = {
|
||
|
atuin = {
|
||
|
enable = true;
|
||
|
enableZshIntegration = true;
|
||
|
settings = {
|
||
|
auto_sync = true;
|
||
|
sync_frequency = "5m";
|
||
|
sync_address = "https://atuin.molez.org";
|
||
|
update_check = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|