mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
15 lines
368 B
Nix
15 lines
368 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselmodules.kitty = lib.mkEnableOption "kitty settings";
|
|
config = lib.mkIf config.swarselmodules.kitty {
|
|
programs.kitty = {
|
|
enable = true;
|
|
keybindings = { };
|
|
settings = {
|
|
scrollback_lines = 10000;
|
|
enable_audio_bell = false;
|
|
notify_on_cmd_finish = "always 20";
|
|
};
|
|
};
|
|
};
|
|
}
|