mirror of
https://github.com/morten-olsen/nixos-config.git
synced 2026-02-08 00:36:27 +01:00
24 lines
495 B
Nix
24 lines
495 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
font = {
|
|
name = "FiraCode Nerd Font Mono Reg";
|
|
size = 12;
|
|
package = (pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; });
|
|
};
|
|
settings = {
|
|
# Enable ligatures
|
|
draw_ligatures = true;
|
|
|
|
italic_font = "auto";
|
|
bold_italic_font = "auto";
|
|
disable_ligatures = "cursor";
|
|
enable_audio_bell = false;
|
|
bell_on_tab = false;
|
|
background_opacity = "0.8";
|
|
};
|
|
};
|
|
}
|