nixos/kmscon: enforce that at least one monospace font exists

This commit is contained in:
Sandro Jäckel
2026-08-22 20:18:10 +02:00
parent 89b717b304
commit 97402c55d6

View File

@@ -160,6 +160,10 @@ in
);
environment.systemPackages = [ cfg.package ];
# Install at least one monospace font, as otherwise the fallback is DejaVu Sans, a non-monospace font
fonts.packages = [ pkgs.hack-font ];
systemd.packages = [ cfg.package ];
systemd.services."kmsconvt@" = {