You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
374 B
18 lines
374 B
{ ... }:
|
|
|
|
let
|
|
colors = import ./colors;
|
|
in
|
|
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
# https://github.com/kovidgoyal/kitty-themes/blob/master/themes.json
|
|
theme = "${colors.kitty-theme}";
|
|
font = {
|
|
name = "FiraCode Nerd Font Mono";
|
|
size = 12;
|
|
};
|
|
extraConfig = "enable_audio_bell 0\nconfirm_os_window_close 0\nbackground_opacity 0.7";
|
|
};
|
|
}
|