feat: add atuin

This commit is contained in:
Leon Schwarzäugl 2025-06-29 15:33:49 +02:00
parent 91fc0227bf
commit a21ff3228c
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
7 changed files with 165 additions and 16 deletions

View file

@ -0,0 +1,15 @@
{ 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";
};
};
};
}