13 lines
252 B
Nix
13 lines
252 B
Nix
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
font.name = "JetBrains Mono Nerd Font";
|
|
font.size = 12;
|
|
theme = "One Half Dark";
|
|
shellIntegration.enableZshIntegration = true;
|
|
settings = {
|
|
confirm_os_window_close = -1;
|
|
};
|
|
};
|
|
}
|