mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
16 lines
370 B
Nix
16 lines
370 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
wayland.windowManager.sway.extraSessionCommands = ''
|
|
export KITTY_CACHE_DIRECTORY="/tmp/kitty";
|
|
'';
|
|
programs.kitty = {
|
|
enable = true;
|
|
font.name = config.kw.theme.font.termName;
|
|
settings = {
|
|
font_size = toString config.kw.theme.font.size;
|
|
background_opacity = "0.9";
|
|
disable_ligatures = "cursor";
|
|
};
|
|
};
|
|
}
|