dotfiles/nix/configs/kitty.nix

17 lines
273 B
Nix
Raw Permalink Normal View History

2024-04-28 11:35:35 +02:00
{ pkgs, ... }: {
home-manager.users.grape.programs.kitty = {
enable = true;
font.name = "Jetbrains Mono Nerd font";
extraConfig = ''
enable_audio_bell no
window_alert_on_bell no
foreground #dddddd
background #191830
'';
};
}