os/system/dev-lt-63/term.nix

21 lines
323 B
Nix
Raw Normal View History

2023-05-22 00:09:59 +02:00
{ 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";
2023-05-22 00:45:36 +02:00
size = 8;
2023-05-22 00:09:59 +02:00
};
};
}