From 8284139b0e523c65a4a9e5565e9027a5666b6a96 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 20 Apr 2021 00:23:26 +0200 Subject: [PATCH] home: i3: fix font issue in i3 bar see nix-community/home-manager#1937 for details about the issue --- home/x/i3.nix | 2 +- home/x/i3bar.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/home/x/i3.nix b/home/x/i3.nix index 780e3c7..265d029 100644 --- a/home/x/i3.nix +++ b/home/x/i3.nix @@ -46,7 +46,7 @@ in { statusCommand = "i3status-rs ${barConfigPath}"; position = "top"; - fonts = [ "DejaVu Sans Mono 9" ]; + fonts = [ "DejaVuSansMono" "FontAwesome5Free 9" ]; colors = { background = colorBg; diff --git a/home/x/i3bar.nix b/home/x/i3bar.nix index b604b41..cf678e2 100644 --- a/home/x/i3bar.nix +++ b/home/x/i3bar.nix @@ -8,7 +8,7 @@ in home.packages = with pkgs; [ iw # Used by `net` block lm_sensors # Used by `temperature` block - font-awesome-ttf + font-awesome ]; programs.i3status-rust = {