nix-config/modules/home-manager/kittty/kitty.nix
2024-03-25 00:11:55 -05:00

16 lines
200 B
Nix

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