Files
dotfiles/config/home-manager/packages/kitty.nix
Menno van Leeuwen 0f3d7b56ed secrets fixes
adds steam
removes old ssh keys symlinks
adds gnome extensions
removes useless go paths
2024-11-01 15:15:40 +01:00

22 lines
585 B
Nix

{ pkgs, ... }:
{
programs.kitty = {
enable = true;
font = {
name = "Hack Nerd Font";
size = 14;
};
settings = {
dynamic_background_opacity = true;
background_opacity = "0.95";
background_blur = 64;
};
shellIntegration.enableFishIntegration = true;
theme = "Catppuccin-Macchiato";
#Also available: Catppuccin-Frappe Catppuccin-Latte Catppuccin-Macchiato Catppuccin-Mocha
# See all available kitty themes at: https://github.com/kovidgoyal/kitty-themes/blob/46d9dfe230f315a6a0c62f4687f6b3da20fd05e4/themes.json
};
}