13 lines
188 B
Nix
13 lines
188 B
Nix
|
|
{ config, pkgs, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
programs.kitty = {
|
||
|
|
enable = true;
|
||
|
|
settings = {
|
||
|
|
font_family = "Cascadia Code";
|
||
|
|
font_size = 18;
|
||
|
|
enable_audio_bell = "no";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|