This commit is contained in:
js0ny 2025-12-05 17:43:05 +00:00
parent 2cfb136270
commit 014de5c5fe
4 changed files with 11 additions and 1 deletions

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
programs.nix-ld = {
enable = true;
libraries = with pkgs; [
stdenv.cc.cc
];
};
}