Polish ringtail NixOS config and add documentation #208
1 changed files with 6 additions and 3 deletions
Move runtime libs to nix-ld.libraries for mise binaries
Dynamically linked binaries (dotnet, python) need libraries in NIX_LD_LIBRARY_PATH, not just on PATH via systemPackages. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
commit
6b946349c3
|
|
@ -134,7 +134,13 @@
|
|||
pkg-config
|
||||
openssl
|
||||
gnupg
|
||||
];
|
||||
|
||||
# Allow running dynamically linked binaries (mise-installed runtimes, etc.)
|
||||
programs.nix-ld.enable = true;
|
||||
programs.nix-ld.libraries = with pkgs; [
|
||||
icu
|
||||
openssl
|
||||
zlib
|
||||
readline
|
||||
bzip2
|
||||
|
|
@ -144,9 +150,6 @@
|
|||
sqlite
|
||||
];
|
||||
|
||||
# Allow running dynamically linked binaries (mise-installed runtimes, etc.)
|
||||
programs.nix-ld.enable = true;
|
||||
|
||||
# Fonts
|
||||
fonts.packages = with pkgs; [
|
||||
nerd-fonts.victor-mono
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue