about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-07-19 13:43:36 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-07-24 17:34:39 +0200
commitb0c67b4b6e0d21fd47097886f5c21cfb6bf27aad (patch)
treefefc5e590bc63c3dfa791d088d41fa45cfee676a /doc
parent5162df32399c7e9d77cc38702202983dbe9ad113 (diff)
treewide: rename fonts.fonts to fonts.packages
Diffstat (limited to 'doc')
-rw-r--r--doc/builders/packages/ibus.section.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/builders/packages/ibus.section.md b/doc/builders/packages/ibus.section.md
index ec78cd0c9a965..4eb74c0b6912a 100644
--- a/doc/builders/packages/ibus.section.md
+++ b/doc/builders/packages/ibus.section.md
@@ -34,5 +34,7 @@ The `ibus-engines.typing-booster` package contains a program named `emoji-picker
 On NixOS, it can be installed using the following expression:
 
 ```nix
-{ pkgs, ... }: { fonts.fonts = with pkgs; [ noto-fonts-emoji ]; }
+{ pkgs, ... }: {
+  fonts.packages = with pkgs; [ noto-fonts-emoji ];
+}
 ```