From 227e8a381a385001da5737bfc40a13b4ee56dd93 Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Fri, 18 Oct 2024 19:22:49 -0700 Subject: [PATCH] lix: link debuginfo into the closure This is to ease debugging of https://git.lix.systems/lix-project/lix/issues/549 --- hosts/epyc.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/epyc.nix b/hosts/epyc.nix index c7acff8..70dc3e4 100644 --- a/hosts/epyc.nix +++ b/hosts/epyc.nix @@ -16,6 +16,15 @@ in ../modules/lix-bug-details-pls ]; + # Include debuginfo for Lix + environment.systemPackages = [ + pkgs.lix.debug + pkgs.lix.passthru.capnproto-lix.debug + ]; + environment.pathsToLink = [ + "/lib/debug" + ]; + networking.hostName = "epyc"; security.acme.acceptTerms = true;