From d2a1c84d41f7e5b7af91cdb943228c4567535590 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Thu, 20 Jun 2024 23:00:07 +0200 Subject: [PATCH] Install font-manager --- system/roles/workstation/fonts.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/system/roles/workstation/fonts.nix b/system/roles/workstation/fonts.nix index 600b778..4d2a0b6 100644 --- a/system/roles/workstation/fonts.nix +++ b/system/roles/workstation/fonts.nix @@ -101,5 +101,10 @@ in { }) ]; }; + + environment.systemPackages = with pkgs; [ + # Tool for searching and previewing installed fonts + font-manager + ]; }; }