mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
20 lines
338 B
Nix
20 lines
338 B
Nix
|
|
{ pkgs, ... }:
|
||
|
|
{
|
||
|
|
programs.kitty = {
|
||
|
|
enable = true;
|
||
|
|
|
||
|
|
theme = "Catppuccin-Mocha";
|
||
|
|
|
||
|
|
font = {
|
||
|
|
name = "JetBrainsMono Nerd Font";
|
||
|
|
size = 13;
|
||
|
|
};
|
||
|
|
|
||
|
|
settings = {
|
||
|
|
background_opacity = "0.55";
|
||
|
|
window_padding_width = 5;
|
||
|
|
scrollback_lines = 10000;
|
||
|
|
enable_audio_bell = false;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|