os/shared/home/gui/term.nix

22 lines
No EOL
363 B
Nix

{ pkgs, config, ... }:
let theme = config.theme; in {
programs.kitty = {
enable = true;
settings = {
term = "xterm";
enable_audio_bell = false;
scrollback_lines = 5000000;
background = "#${theme.background.basic}";
};
font = {
name = "Fira Code";
package = pkgs.fira-code;
size = 8.5;
};
};
}