Files
dotfiles/home-modules/kitty.nix
Lennart J. Kurzweg (Nx2) 219a19a3a8 fonts (no name2)
2024-12-02 20:46:32 +01:00

37 lines
1.1 KiB
Nix
Executable File

{ rice, ... }:
{
programs.kitty = {
enable = true;
font = {
name = rice.font.code.name;
package = rice.font.code.package;
};
settings = with rice.color; {
background = background;
foreground = foreground;
cursor = foreground;
color0 = black.base;
color8 = black.bright;
color1 = red.base;
color9 = red.bright;
color2 = green.base;
color10 = green.bright;
color3 = yellow.base;
color11 = yellow.bright;
color4 = blue.base;
color12 = blue.bright;
color5 = magenta.base;
color13 = magenta.bright;
color6 = cyan.base;
color14 = cyan.bright;
color7 = white.base;
color15 = white.bright;
background_opacity = builtins.toString rice.transparency;
window_padding_width = 5;
remember_window_size = false;
};
};
}