nixfiles/nixos/profiles/graphical/fonts.nix
2025-12-04 07:46:50 -08:00

25 lines
448 B
Nix

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