nix-config/modules/home-manager/kitty.nix

19 lines
254 B
Nix

{
config,
pkgs,
lib,
...
}: {
programs.kitty = {
enable = true;
font = {
package = pkgs.fira-code-nerdfont;
name = "Fira Code";
};
theme = "Gruvbox Dark";
settings={
background_opacity="0.8";
};
};
}