mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
19 lines
337 B
Nix
19 lines
337 B
Nix
{ pkgs, ... }: {
|
|
fonts = {
|
|
fonts = with pkgs; [
|
|
twitter-color-emoji
|
|
iosevka-bin
|
|
];
|
|
enableDefaultFonts = true;
|
|
fontDir.enable = true;
|
|
fontconfig = {
|
|
enable = true;
|
|
allowBitmaps = true;
|
|
defaultFonts = {
|
|
emoji = [
|
|
"Twitter Color Emoji"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|