From 384b84fec2f8accec931a9b93c20aa17d7be2b81 Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Mon, 30 Mar 2026 23:52:03 +0200 Subject: [PATCH] fix(nixos): enable nix-ld on sunken-ship for Claude Code :bug: The Claude Code remote CLI is a dynamically linked binary that fails on NixOS without a standard ld-linux stub. nix-ld provides it. --- nixos/hosts/sunken-ship.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/hosts/sunken-ship.nix b/nixos/hosts/sunken-ship.nix index 7344970..c53296a 100644 --- a/nixos/hosts/sunken-ship.nix +++ b/nixos/hosts/sunken-ship.nix @@ -37,6 +37,7 @@ in }; 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"; users.users.danny = {