flake/home/applications/atuin/default.nix
2024-11-08 13:58:28 +08:00

28 lines
448 B
Nix

{
programs.atuin = {
enable = true;
flags = [ "--disable-up-arrow" ];
settings = {
style = "compact";
show_help = false;
stats.common_subcommands = [
"nix"
"nom"
"nh"
"podman"
"docker"
"atuin"
"hugo"
"adb"
# default
"cargo"
"go"
"git"
"npm"
"yarn"
"pnpm"
"kubectl"
];
};
};
}