nixfiles/nixos/profiles/graphical/fonts.nix
2024-04-06 11:21:36 -07:00

25 lines
445 B
Nix

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