Reorganize

This commit is contained in:
Henry Hiles 2025-07-12 10:53:06 -04:00
commit b506e8af60
No known key found for this signature in database
27 changed files with 2045 additions and 98 deletions

View file

@ -0,0 +1,12 @@
{pkgs, ...}: {
fonts = {
enableDefaultPackages = false;
packages = with pkgs; [inter nerd-fonts.fira-code twitter-color-emoji];
fontconfig.defaultFonts = rec {
serif = ["Inter"];
sansSerif = serif;
monospace = ["FiraCode Nerd Font"];
emoji = ["Twitter Color Emoji"];
};
};
}