From 33f753e0118139aa4fba24cea8057cab679b9683 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Tue, 30 Jul 2024 07:51:43 +0200 Subject: [PATCH] feat(shell): add atuin --- shell/atuin.nix | 16 ++++++++++++++++ shell/default.nix | 1 + 2 files changed, 17 insertions(+) create mode 100644 shell/atuin.nix diff --git a/shell/atuin.nix b/shell/atuin.nix new file mode 100644 index 0000000..b13bd98 --- /dev/null +++ b/shell/atuin.nix @@ -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; + }; + }; + }; +} diff --git a/shell/default.nix b/shell/default.nix index 575337c..6612524 100644 --- a/shell/default.nix +++ b/shell/default.nix @@ -9,6 +9,7 @@ ]; imports = [ + ./atuin.nix ./bat.nix ./carapace.nix ./direnv.nix