refactor(host/orion): add stdenv.cc.cc as lib to nix-ld

This commit is contained in:
Price Hiller 2024-09-21 14:52:53 -05:00
parent 5f4f0fcfe5
commit ff50d8ed2e
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -1,4 +1,4 @@
{ ... }:
{ pkgs, ... }:
{
programs = {
dconf.enable = true;
@ -8,7 +8,12 @@
enableGlobalCompInit = false;
enableBashCompletion = true;
};
nix-ld.enable = true;
nix-ld = {
enable = true;
libraries = with pkgs; [
stdenv.cc.cc
];
};
steam.enable = true;
};
}