From 8593951512be32941c0a4bf9ad8a5ef5aa04c3af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikodem=20Rabuli=C5=84ski?= Date: Fri, 2 Feb 2024 12:11:58 +0100 Subject: [PATCH] modules/home/common/desktop: enable fontconfig --- modules/home/common/desktop/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/home/common/desktop/default.nix b/modules/home/common/desktop/default.nix index 77f3cbd..dcd86f8 100644 --- a/modules/home/common/desktop/default.nix +++ b/modules/home/common/desktop/default.nix @@ -14,8 +14,11 @@ config = lib.mkIf config.common.desktop.enable { home.packages = with pkgs; [ nerdfonts + fontconfig ]; + fonts.fontconfig.enable = true; + programs.firefox = { enable = true; package = let @@ -35,6 +38,7 @@ then "Buttonless" else "None"; }; + font.normal.family = "Iosevka Nerd Font"; }; };