dotfiles/nix/configs/kitty.nix
2024-07-31 07:17:52 +02:00

17 lines
273 B
Nix

{ 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
'';
};
}