From 2264e15102dd97475524c5e6f914e206d0d2329f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Bon=C3=A9?= Date: Mon, 27 Oct 2025 11:47:32 +0100 Subject: [PATCH] Fix replaced nixseparatedebuginfod nixseparatedebuginfod has been replaced by nixseparatedebuginfod2 --- m/module/debuginfod.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/m/module/debuginfod.nix b/m/module/debuginfod.nix index a7dc05d7..8f093e1c 100644 --- a/m/module/debuginfod.nix +++ b/m/module/debuginfod.nix @@ -1,3 +1,10 @@ { - services.nixseparatedebuginfod.enable = true; + services.nixseparatedebuginfod2 = { + enable = true; + substituters = [ + "local:" + "https://cache.nixos.org" + "http://hut/cache" + ]; + }; }