dotfiles/hosts/strix/configs/kitty.nix

18 lines
281 B
Nix
Raw Normal View History

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