nixos/home-manager/packages/kitty.nix

19 lines
328 B
Nix
Raw Normal View History

2024-07-26 18:10:34 -04:00
{ pkgs, ... }:
2024-07-26 17:39:20 -04:00
{
programs.kitty = {
enable = true;
2024-07-26 18:10:34 -04:00
theme = "Catppuccin-Mocha";
font = {
name = "FiraCode Nerd Font";
package = pkgs.fira-code-nerdfont;
size = 14;
};
2024-07-26 17:39:20 -04:00
settings = {
window_padding_width = 4;
2024-08-02 16:51:16 -04:00
background_opacity = "0.65";
background_blur = 1;
2024-07-26 17:39:20 -04:00
};
};
}