18 lines
281 B
Nix
18 lines
281 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.kitty = {
|
|
shellIntegration.enableZshIntegration = true;
|
|
font = {
|
|
package = pkgs.fira-code-nerdfont;
|
|
name = "Fira Code Nerd Font";
|
|
size = 12;
|
|
};
|
|
settings = {
|
|
background_opacity = "0.6";
|
|
};
|
|
};
|
|
}
|