email update

This commit is contained in:
2024-07-17 21:42:54 -04:00
parent c7595f6468
commit c1cf27777f
8 changed files with 114 additions and 99 deletions

View File

@@ -0,0 +1,19 @@
{ 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";
};
}