14 lines
207 B
Nix
14 lines
207 B
Nix
|
|
{
|
||
|
|
programs.kitty = {
|
||
|
|
enable = true;
|
||
|
|
font = {
|
||
|
|
name = "Iosevka Nerd Font Mono";
|
||
|
|
size = 14;
|
||
|
|
};
|
||
|
|
settings = {
|
||
|
|
window_padding_width = 4;
|
||
|
|
};
|
||
|
|
theme = "Ayu Mirage";
|
||
|
|
};
|
||
|
|
}
|