os/shared/home/gui/term.nix

23 lines
No EOL
411 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 = 10.5;
};
};
}