Files
nixos/home/kitty.nix
2024-09-04 07:56:38 +02:00

15 lines
216 B
Nix

{ pkgs, config, ... }:
{
programs.kitty = {
enable = true;
font = {
name = "JetBrainsMono Nerd Font";
size = 16;
};
theme = "Catppuccin-Mocha";
settings = {
enable_audio_bell = false;
};
};
}