mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 08:10:43 +01:00
18 lines
311 B
Nix
18 lines
311 B
Nix
_: {
|
|
programs.atuin = {
|
|
enable = true;
|
|
|
|
enableBashIntegration = false;
|
|
enableFishIntegration = true;
|
|
enableZshIntegration = true;
|
|
flags = ["--disable-up-arrow"];
|
|
|
|
settings = {
|
|
update_check = false;
|
|
history_filter = [
|
|
"^clear"
|
|
"^exit"
|
|
];
|
|
};
|
|
};
|
|
}
|