mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
15 lines
397 B
Nix
15 lines
397 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselsystems.modules.atuin = lib.mkEnableOption "atuin settings";
|
|
config = lib.mkIf config.swarselsystems.modules.atuin {
|
|
programs.atuin = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
settings = {
|
|
auto_sync = true;
|
|
sync_frequency = "5m";
|
|
sync_address = "https://shellhistory.swarsel.win";
|
|
};
|
|
};
|
|
};
|
|
}
|