kitty: init

This commit is contained in:
makefu 2024-06-13 09:14:22 +02:00
parent c8531556e6
commit cd8399982c
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225

15
2configs/gui/kitty.nix Normal file
View file

@ -0,0 +1,15 @@
{
# Terminal
home-manager.users.makefu = {
programs.kitty = {
enable = true;
font.package = pkgs.terminus_font;
settings = {
update_check_interval = 0;
enable_audio_bell = false;
scollback_lines = 100000;
confirm_os_window_close = 0;
};
};
};
}