reNixos/hand7s/programs/atuin.nix
s0me1newithhand7s 937fcc10bb chore(hand7s): atuin upstream
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-05-29 16:23:10 +03:00

23 lines
379 B
Nix

_: {
programs = {
atuin = {
enable = true;
enableNushellIntegration = true;
enableFishIntegration = true;
settings = {
keymap_mode = "vim-normal";
cursor_style = "blink-block";
};
flags = [
"--disable-up-arrow"
];
daemon = {
enable = true;
logLevel = "info";
};
};
};
}