From dc1c0e8f47ac3ba03747b524c0b5c6a901188f6e Mon Sep 17 00:00:00 2001 From: wxlyyy <1556588440@qq.com> Date: Sun, 30 Nov 2025 00:29:51 +0800 Subject: [PATCH] Nix: update dependencies --- nix/package.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/nix/package.nix b/nix/package.nix index 66b1e6c59..5a8b48fee 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -13,11 +13,8 @@ matugen, wlsunset, wl-clipboard, + imagemagick, gpu-screen-recorder, # optional - # fonts - makeFontsConf, - roboto, - inter-nerdfont, }: let src = lib.cleanSourceWith { src = ../.; @@ -47,17 +44,11 @@ matugen wlsunset wl-clipboard + imagemagick ] ++ lib.optionals (stdenvNoCC.hostPlatform.system == "x86_64-linux") [ gpu-screen-recorder ]; - - fontsConf = makeFontsConf { - fontDirectories = [ - roboto - inter-nerdfont - ]; - }; in stdenvNoCC.mkDerivation { pname = "noctalia-shell"; @@ -80,7 +71,6 @@ in preFixup = '' qtWrapperArgs+=( --prefix PATH : ${lib.makeBinPath runtimeDeps} - --set FONTCONFIG_FILE ${fontsConf} --add-flags "-p $out/share/noctalia-shell" ) '';