nixfiles/nixos/roles/graphical/fonts.nix

20 lines
360 B
Nix

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