mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
22 lines
350 B
Nix
22 lines
350 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
fonts = {
|
|
enableDefaultFonts = true;
|
|
fontDir.enable = true;
|
|
fontconfig = {
|
|
enable = true;
|
|
allowBitmaps = true;
|
|
defaultFonts = {
|
|
emoji = [
|
|
"Twitter Color Emoji"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
|
|
fonts.fonts = with pkgs; [
|
|
cozette
|
|
twitter-color-emoji
|
|
];
|
|
}
|