From f7757d697df91d0cd4912fd7df650cd34098c0c2 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 22 Jan 2026 16:13:36 +0900 Subject: [PATCH] base: don't install dynamic loader stub --- base/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/base/default.nix b/base/default.nix index 1dbf3f3..91d7414 100644 --- a/base/default.nix +++ b/base/default.nix @@ -52,6 +52,9 @@ keyMap = "no"; }; + # Don't install the /lib/ld-linux.so.2 stub + environment.ldso32 = null; + # .bash_profile already works, but lets also use .bashrc like literally every other distro # https://man.archlinux.org/man/core/bash/bash.1.en#INVOCATION # home-manager usually handles this for you: https://github.com/nix-community/home-manager/blob/22a36aa709de7dd42b562a433b9cefecf104a6ee/modules/programs/bash.nix#L203-L209