nixfiles/nixos/profiles/graphical/fonts.nix
2025-07-26 17:06:28 -07:00

26 lines
458 B
Nix

{pkgs, ...}: {
fonts = {
packages = with pkgs; [
font-awesome
twitter-color-emoji
iosevka-bin
monaspace
corefonts
vistafonts
open-dyslexic
ubuntu-sans
jost
];
enableDefaultPackages = true;
fontDir.enable = true;
fontconfig = {
enable = true;
allowBitmaps = true;
defaultFonts = {
emoji = [
"Twitter Color Emoji"
];
};
};
};
}