about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authornicoo <nicoo@mur.at>2023-09-08 11:14:04 +0000
committernicoo <nicoo@mur.at>2023-09-12 12:38:07 +0000
commitc7423cd7343d1d5f6e6264f48d6e55b3468f36b4 (patch)
treea34e1b64800812752ed7047bcf9ccbf38adcb84b /doc
parent49f1b36299f24a9c61e74a885dceb48bef06f539 (diff)
noto-fonts-emoji → noto-fonts-color-emoji
Clarify that the monochrome font is not included, per #221181.

The new name is also coherent with the name of the font,
according to `fontconfig`: Noto Color Emoji.
Diffstat (limited to 'doc')
-rw-r--r--doc/builders/packages/ibus.section.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/builders/packages/ibus.section.md b/doc/builders/packages/ibus.section.md
index 4eb74c0b6912a..817e55d56f1f9 100644
--- a/doc/builders/packages/ibus.section.md
+++ b/doc/builders/packages/ibus.section.md
@@ -29,12 +29,12 @@ _Note: each language passed to `langs` must be an attribute name in `pkgs.hunspe
 
 ## Built-in emoji picker {#sec-ibus-typing-booster-emoji-picker}
 
-The `ibus-engines.typing-booster` package contains a program named `emoji-picker`. To display all emojis correctly, a special font such as `noto-fonts-emoji` is needed:
+The `ibus-engines.typing-booster` package contains a program named `emoji-picker`. To display all emojis correctly, a special font such as `noto-fonts-color-emoji` is needed:
 
 On NixOS, it can be installed using the following expression:
 
 ```nix
 { pkgs, ... }: {
-  fonts.packages = with pkgs; [ noto-fonts-emoji ];
+  fonts.packages = with pkgs; [ noto-fonts-color-emoji ];
 }
 ```