feat(shell): add atuin

main
mandlm 2024-07-30 07:51:43 +02:00
parent b0f97eb511
commit 33f753e011
Signed by: mandlm
GPG Key ID: 088ED38F036C7AF2
2 changed files with 17 additions and 0 deletions

16
shell/atuin.nix Normal file
View File

@ -0,0 +1,16 @@
{ ... }:
{
programs = {
atuin = {
enable = true;
enableZshIntegration = true;
settings = {
auto_sync = true;
sync_frequency = "5m";
sync_address = "https://atuin.molez.org";
update_check = false;
};
};
};
}

View File

@ -9,6 +9,7 @@
];
imports = [
./atuin.nix
./bat.nix
./carapace.nix
./direnv.nix