nixos-old/kitty/settings.nix

21 lines
388 B
Nix

{ pkgs, ... }:
{
enable = true;
settings = {
# dont pop up a prompt when trying to close
confirm_os_window_close = 0;
# copy to clipboard
strip_trailing_spaces = "smart";
copy_on_select = true;
# performance
sync_to_monitor = true;
};
font = {
name = "CaskaydiaCove Nerd Font Mono";
size = 14;
};
theme = "Gruvbox Material Light Hard";
}