From d17c9cc948f2a6b8f226c482ef4cc3ecf0a96bc8 Mon Sep 17 00:00:00 2001 From: K900 Date: Fri, 26 Jun 2026 16:40:22 +0300 Subject: [PATCH] nixos/tests/fontconfig-default-fonts: switch to containers, don't use cantarell-fonts --- nixos/tests/fontconfig-default-fonts.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/nixos/tests/fontconfig-default-fonts.nix b/nixos/tests/fontconfig-default-fonts.nix index 4a46b3e17172..9e6becd5ed02 100644 --- a/nixos/tests/fontconfig-default-fonts.nix +++ b/nixos/tests/fontconfig-default-fonts.nix @@ -6,20 +6,19 @@ jtojnar ]; - nodes.machine = + containers.machine = { config, pkgs, ... }: { fonts.enableDefaultPackages = true; # Background fonts fonts.packages = with pkgs; [ noto-fonts-color-emoji - cantarell-fonts twitter-color-emoji source-code-pro gentium ]; fonts.fontconfig.defaultFonts = { serif = [ "Gentium" ]; - sansSerif = [ "Cantarell" ]; + sansSerif = [ "DejaVu Sans" ]; monospace = [ "Source Code Pro" ]; emoji = [ "Twitter Color Emoji" ]; }; @@ -27,7 +26,7 @@ testScript = '' machine.succeed("fc-match serif | grep '\"Gentium\"'") - machine.succeed("fc-match sans-serif | grep '\"Cantarell\"'") + machine.succeed("fc-match sans-serif | grep '\"DejaVu Sans\"'") machine.succeed("fc-match monospace | grep '\"Source Code Pro\"'") machine.succeed("fc-match emoji | grep '\"Twitter Color Emoji\"'") '';