From 7095b8e1495b6f48dc37365723ce23e076e6842a Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sat, 8 Feb 2025 06:24:20 +0000 Subject: [PATCH] Add nix-ld with some common libraries --- system/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/system/default.nix b/system/default.nix index 66fe27e3..5b6f3a47 100644 --- a/system/default.nix +++ b/system/default.nix @@ -167,6 +167,16 @@ set tabsize 2 ''; }; + nix-ld = { + enable = true; + libraries = with pkgs; [ + stdenv.cc.cc + glib + glibc + zlib + zstd + ]; + }; }; services = { upower.enable = true;