fix(nixos): enable nix-ld on sunken-ship for Claude Code 🐛

The Claude Code remote CLI is a dynamically linked binary that
fails on NixOS without a standard ld-linux stub. nix-ld provides it.
This commit is contained in:
DannyDannyDanny 2026-03-30 23:52:03 +02:00
parent 81c510ca16
commit 384b84fec2

View file

@ -37,6 +37,7 @@ in
}; };
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
programs.nix-ld.enable = true; # run dynamically linked binaries (e.g. Claude Code remote CLI)
system.stateVersion = "24.11"; system.stateVersion = "24.11";
users.users.danny = { users.users.danny = {