2024-07-17 21:42:54 -04:00

20 lines
333 B
Nix

{ pkgs, config, ... }:
{
home.packages = with pkgs; [
(nerdfonts.override { fonts = [ "Iosevka" ]; })
];
programs.kitty = {
enable = true;
font = {
name = "Iosevka Nerd Font";
size = 12;
};
shellIntegration = {
enableZshIntegration = true;
};
theme = "Catppuccin-Frappe";
};
}