20 lines
423 B
Nix
20 lines
423 B
Nix
|
{ pkgs, lib, config, ... }:
|
||
|
{
|
||
|
config = {
|
||
|
programs.atuin = {
|
||
|
enable = true;
|
||
|
enableBashIntegration = true;
|
||
|
enableZshIntegration = true;
|
||
|
settings = {
|
||
|
auto_sync = true;
|
||
|
sync_frequency = "5m";
|
||
|
sync_address = "https://atuin.frogeye.fr";
|
||
|
ctrl_n_shortcuts = true; # Cranberry uses Alt for i3
|
||
|
};
|
||
|
flags = [
|
||
|
"--disable-up-arrow"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|