25 lines
626 B
Nix
25 lines
626 B
Nix
{nixosConfig, ...}: {
|
|
wayland.windowManager.sway.extraSessionCommands = ''
|
|
export KITTY_CACHE_DIRECTORY="/tmp/kitty";
|
|
'';
|
|
programs.kitty = {
|
|
enable = true;
|
|
font.name = "Comic Code";
|
|
settings = {
|
|
font_size =
|
|
if nixosConfig.networking.hostName == "tablet"
|
|
then 12
|
|
else 20;
|
|
bold_font = "auto";
|
|
italic_font = "auto";
|
|
bold_italic_font = "auto";
|
|
background_opacity = "0.9";
|
|
disable_ligatures = "cursor";
|
|
enable_audio_bell = false;
|
|
tab_bar_style = "separator";
|
|
tab_separator = " | ";
|
|
confirm_os_window_close = 0;
|
|
};
|
|
};
|
|
}
|