From 0a08e8294da5066298fe5b997d0df162faeedf86 Mon Sep 17 00:00:00 2001 From: Johannes Hendrik Gerard van der Weide Date: Tue, 27 Feb 2024 17:52:01 +0100 Subject: [PATCH] Added atuin --- hertog/home.nix | 1 + programs/atuin.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 programs/atuin.nix diff --git a/hertog/home.nix b/hertog/home.nix index 7ab37b0..19117af 100644 --- a/hertog/home.nix +++ b/hertog/home.nix @@ -9,6 +9,7 @@ ../programs/sway ../programs/alacritty.nix ../programs/dconf.nix + ../programs/atuin.nix ../programs/zsh.nix ../programs/git.nix ../programs/hyfetch.nix diff --git a/programs/atuin.nix b/programs/atuin.nix new file mode 100644 index 0000000..e16c386 --- /dev/null +++ b/programs/atuin.nix @@ -0,0 +1,11 @@ +{ + programs.atuin = { + enable = true; + enableBashIntegration = true; + enableZshIntegration = true; + settings = { + auto_sync = true; + dialect = "uk"; + }; + }; +}