From f6c2c48c7d1af98a69c3e6592255d18bd0b7a008 Mon Sep 17 00:00:00 2001 From: Andreas Schaafsma Date: Tue, 12 May 2026 23:56:13 +0200 Subject: [PATCH] fonts --- .../drivebystation-nix/configuration.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/systems/x86_64-linux/drivebystation-nix/configuration.nix b/systems/x86_64-linux/drivebystation-nix/configuration.nix index 62e1633..3cc019a 100644 --- a/systems/x86_64-linux/drivebystation-nix/configuration.nix +++ b/systems/x86_64-linux/drivebystation-nix/configuration.nix @@ -238,6 +238,23 @@ # Or disable the firewall altogether. # networking.firewall.enable = false; + fonts = { + packages = with pkgs; [ + noto-fonts + noto-fonts-color-emoji + ]; + fontconfig = { + enable = true; + + defaultFonts = { + sansSerif = [ "DejaVu Sans" "Noto Color Emoji" ]; + serif = [ "DejaVu Serif" "Noto Color Emoji" ]; + monospace = [ "DejaVu Sans Mono" "Noto Color Emoji" ]; + emoji = [ "Noto Color Emoji" ]; + }; + }; + }; + # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave