23 lines
No EOL
410 B
Nix
23 lines
No EOL
410 B
Nix
{ pkgs, config, ... }:
|
|
|
|
let theme = config.theme; in {
|
|
|
|
programs.kitty = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
term = "xterm-256color";
|
|
enable_audio_bell = false;
|
|
scrollback_lines = 5000000;
|
|
background = "#${theme.background.minor}";
|
|
bold_font = "Fira Code Medium";
|
|
};
|
|
|
|
font = {
|
|
name = "Fira Code";
|
|
package = pkgs.fira-code;
|
|
size = 8.5;
|
|
};
|
|
};
|
|
|
|
} |