mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 15:16:11 +01:00
20 lines
334 B
Nix
20 lines
334 B
Nix
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
font = {
|
|
name = "FiraCode Nerd Font";
|
|
size = 12;
|
|
};
|
|
|
|
theme = "Gruvbox Dark";
|
|
|
|
settings = {
|
|
confirm_os_window_close = 0;
|
|
detect_urls = true;
|
|
enable_audio_bell = false;
|
|
resize_in_steps = true;
|
|
# window_padding_width = 16;
|
|
};
|
|
};
|
|
}
|