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