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

16 lines
200 B
Nix
Raw Normal View History

{
config,
pkgs,
lib,
...
}: {
programs.kitty = {
2024-03-25 00:11:55 -05:00
enable = true;
font = {
package = pkgs.fira-code-nerdfont;
name = "Fira Code";
};
2024-03-25 00:11:55 -05:00
theme = "Gruvbox Dark";
};
}