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

16 lines
200 B
Nix
Raw Normal View History

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