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

19 lines
267 B
Nix
Raw Permalink Normal View History

{
config,
pkgs,
lib,
...
}: {
programs.kitty = {
2024-03-25 00:11:55 -05:00
enable = true;
font = {
package = pkgs.fira-code-nerdfont;
2024-04-10 12:26:08 -05:00
name = "FiraCode Nerd Font";
};
2024-03-25 00:11:55 -05:00
theme = "Gruvbox Dark";
settings = {
background_opacity = "0.8";
};
};
}