14 lines
301 B
Nix
14 lines
301 B
Nix
|
{ pkgs, config, ... }:
|
||
|
|
||
|
{
|
||
|
programs.kitty = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
foreground = "#${config.colorScheme.palette.base05}";
|
||
|
background = "#${config.colorScheme.palette.base00}";
|
||
|
background_opacity = "0.6";
|
||
|
font_family = "DejaVuSansM Nerd Font Mono";
|
||
|
};
|
||
|
};
|
||
|
}
|