From 7139262b33695bf3a21198926dac89a6defc7707 Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Sun, 24 Aug 2025 22:15:24 -0400 Subject: [PATCH] Update fonts so emoji on dashboards work --- modules/hosts/nixos/kiosk-entryway/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/modules/hosts/nixos/kiosk-entryway/default.nix b/modules/hosts/nixos/kiosk-entryway/default.nix index a45603f..0e35ebd 100644 --- a/modules/hosts/nixos/kiosk-entryway/default.nix +++ b/modules/hosts/nixos/kiosk-entryway/default.nix @@ -15,6 +15,18 @@ wlr-randr ]; + fonts = { + fontconfig = { + enable = true; + useEmbeddedBitmaps = true; + }; + packages = with pkgs; [ + noto-fonts + noto-fonts-emoji + noto-fonts-cjk-sans + ]; + }; + hardware = { enableRedistributableFirmware = true; graphics.enable = true;