Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions modules/home/dev.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ _: {
cacert
cachix
cb
cmake
codespell
coreutils-full
curl
Expand Down
9 changes: 9 additions & 0 deletions modules/nixos/desktop-base.nix
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,15 @@ in
gtk3
];

# nix-ld's NIX_LD_LIBRARY_PATH is only consulted when nix-ld itself
# is the dynamic loader. Nix-built interpreters (e.g. the python in
# uv's PEP 517 build envs when it picks up a system python) use the
# regular loader and won't see it. Exposing the same lib bundle on
# LD_LIBRARY_PATH lets those processes resolve libstdc++.so.6 et al
# — needed for grpc_tools._protoc_compiler and similar prebuilt
# wheels invoked during source builds.
environment.sessionVariables.LD_LIBRARY_PATH = "/run/current-system/sw/share/nix-ld/lib";

environment.etc."determinate/config.json".text = builtins.toJSON {
authentication.additionalNetrcSources = [ "/etc/nix/netrc" ];
};
Expand Down
Loading