fix nix-ld on pneuma
Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
parent
524801da32
commit
577cc10640
|
@ -7,7 +7,14 @@
|
||||||
services.tailscale.port = 15430;
|
services.tailscale.port = 15430;
|
||||||
environment.systemPackages = with pkgs; [ wasmtime weechat ];
|
environment.systemPackages = with pkgs; [ wasmtime weechat ];
|
||||||
|
|
||||||
programs.nix-ld.enable = lib.mkForce false;
|
programs.nix-ld.enable = true;
|
||||||
|
environment.variables = {
|
||||||
|
NIX_LD_LIBRARY_PATH = lib.makeLibraryPath [
|
||||||
|
pkgs.stdenv.cc.cc
|
||||||
|
];
|
||||||
|
NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
|
||||||
|
};
|
||||||
|
|
||||||
services.tor = {
|
services.tor = {
|
||||||
enable = true;
|
enable = true;
|
||||||
client.enable = true;
|
client.enable = true;
|
||||||
|
|
Loading…
Reference in New Issue