From 5ef754ecc4b1356eab04e2a9624a8fb0012501ee Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Thu, 19 Jun 2025 05:38:19 +0800 Subject: [PATCH] feat(nixos): enable nix-ld and add empty libraries list --- systems/x86_64-linux/common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/systems/x86_64-linux/common.nix b/systems/x86_64-linux/common.nix index 12cda14..618f952 100644 --- a/systems/x86_64-linux/common.nix +++ b/systems/x86_64-linux/common.nix @@ -14,5 +14,9 @@ in programs = { zsh.enable = true; zsh.enableCompletion = true; + nix-ld = { + enable = true; + libraries = with pkgs; [ ]; + }; }; }