mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-29 00:44:57 +08:00
18 lines
431 B
Nix
18 lines
431 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
fonts = {
|
|
enableDefaultFonts = true;
|
|
|
|
fonts = with pkgs; [
|
|
# NOTE: Some fonts may break colour emojis in Chrome
|
|
# cf. https://github.com/NixOS/nixpkgs/issues/69073#issuecomment-621982371
|
|
# If this happens , keep noto-fonts-emoji and try disabling others (nerdfonts, etc.)
|
|
noto-fonts-emoji
|
|
fira-code
|
|
cascadia-code
|
|
nerdfonts
|
|
b612
|
|
];
|
|
};
|
|
}
|