dotfiles/nixos/modules/fonts.nix
2024-10-06 15:25:05 -05:00

9 lines
182 B
Nix
Executable file

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