blob: 2b9f32cf74ebc51c3dfea86650e91e9f3bf86602 (
plain) (
tree)
|
|
{
config,
lib,
...
}: let
cfg = config.soispha.programs.atuin;
in {
options.soispha.programs.atuin = {
enable = lib.mkEnableOption "atuin";
};
config = lib.mkIf cfg.enable {
age.secrets.atuin_encryption_key = {
file = ./secrets/encryption_key.age;
mode = "700";
owner = "soispha";
group = "users";
};
home-manager.users.soispha = {
programs.atuin = {
enable = true;
enableZshIntegration = config.soispha.programs.zsh.enable;
settings = {
key_path = "${config.age.secrets.atuin_encryption_key.path}";
# TODO: Setup a self-hosted sync server. <2024-10-18>
session_path = "";
auto_sync = false;
sync_address = "";
# Use the rather reasonable syntax of `skim` to search.
search_mode = "skim";
# Filter by files in a git directory, when in one.
# The filtermode can still be changed with `<Ctrl-r>` later.
workspaces = true;
# Save some space, by setting the mode to 'compact' and the height to 1 (meaning
# `atuin` may only use 1 line in the terminal).
style = "auto";
inline_height = 0;
# 'k' and 'j' to move up and down.
keymap_mode = "vim-normal";
keymap_cursor = {
emacs = "blink-underline";
vim_insert = "blink-bar";
vim_normal = "blink-block";
};
# Who wants software, that automatically calls home?!
update_check = false;
stats = {
# This overrides the default value.
ignored_commands = [];
};
# I currently don't want a sync deamon or a dotfiles manager running.
deamon.enable = false;
dotfiles.enable = false;
};
};
};
};
}
|