dotfiles/nixos/modules/fonts.nix

12 lines
234 B
Nix
Executable file

{pkgs, ...}: {
fonts = {
fontconfig.defaultFonts.emoji = ["Noto Fonts Color Emoji"];
packages = builtins.attrValues {
inherit
(pkgs)
noto-fonts-color-emoji
open-dyslexic
;
};
};
}