Nix: update dependencies

This commit is contained in:
wxlyyy
2025-11-30 00:29:51 +08:00
parent 993b6bc422
commit dc1c0e8f47
+2 -12
View File
@@ -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"
)
'';