21 lines
No EOL
323 B
Nix
21 lines
No EOL
323 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";
|
|
size = 8;
|
|
};
|
|
};
|
|
|
|
} |