huge update

This commit is contained in:
2024-09-04 09:14:29 -04:00
parent d468f20e0a
commit bfcf03de3b
19 changed files with 486 additions and 123 deletions

View File

@@ -2,18 +2,26 @@
{
home.packages = with pkgs; [
(nerdfonts.override { fonts = [ "Iosevka" ]; })
(nerdfonts.override { fonts = [ "Iosevka" "NerdFontsSymbolsOnly" ]; })
];
programs.kitty = {
enable = true;
font = {
name = "Iosevka Nerd Font";
name = "Iosevka Nerd Font Mono";
size = 12;
};
shellIntegration = {
enableZshIntegration = true;
};
theme = "Catppuccin-Frappe";
darwinLaunchOptions = [
"--single-instance"
];
settings = {
background_opacity = "0.9";
background_blur = 5;
macos_traditional_fullscreen = "yes";
};
};
}