21 lines
339 B
Nix
21 lines
339 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;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|