From d58c1897c33e8ce9dc3375fcca72d3c294fdd443 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Sun, 1 Jun 2025 19:51:37 +0200 Subject: fix fonts whatever was done to split up the nerdfonts package, the individual parts now don't work if put in home manager's package set .. --- common/desktop.nix | 3 ++- home/packages.nix | 4 +--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/common/desktop.nix b/common/desktop.nix index d3812b2..e570579 100644 --- a/common/desktop.nix +++ b/common/desktop.nix @@ -86,7 +86,8 @@ noto-fonts-cjk-sans noto-fonts-cjk-serif noto-fonts-emoji - ]; + ] ++ (with lib.attrsets; + builtins.filter isDerivation (attrValues pkgs.nerd-fonts)); xdg.portal.wlr.enable = true; diff --git a/home/packages.nix b/home/packages.nix index 15aeeca..415d963 100644 --- a/home/packages.nix +++ b/home/packages.nix @@ -2,11 +2,9 @@ let isabelle = import "${inputs.playground.outPath}/isabelle-nix-fhsenv" { inherit pkgs; }; - fonts = with lib.attrsets; - builtins.filter isDerivation (attrValues pkgs.nerd-fonts); in { - home.packages = with pkgs; fonts ++ [ + home.packages = with pkgs; [ emacs-pgtk emacs-all-the-icons-fonts julia-mono -- cgit v1.2.3