From 695a076e68aeaac67f812664bdb9377798f84596 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 19 Sep 2021 17:37:44 -0400 Subject: [PATCH] fix: add fonts used by Qtile config --- profiles/graphical/qtile.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiles/graphical/qtile.nix b/profiles/graphical/qtile.nix index e776e47..86fd333 100644 --- a/profiles/graphical/qtile.nix +++ b/profiles/graphical/qtile.nix @@ -4,4 +4,6 @@ services.xserver.windowManager.qtile.enable = true; environment.systemPackages = with pkgs; [ xsecurelock ]; + + fonts.fonts = with pkgs; [ powerline-fonts ubuntu_font_family ]; }