From bde6fb1464d98f3ba43936fd9f70febb4dc0a7cd Mon Sep 17 00:00:00 2001 From: emily Date: Fri, 10 May 2024 16:21:18 +0200 Subject: [PATCH] allow missing modules rpi --- config/profiles/rpi.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/profiles/rpi.nix b/config/profiles/rpi.nix index 4c332cc..a44ba17 100644 --- a/config/profiles/rpi.nix +++ b/config/profiles/rpi.nix @@ -63,6 +63,10 @@ nixpkgs.overlays = [ (self: super: { libcec = super.libcec.override { withLibraspberrypi = true; }; }) + (self: super: { + makeModulesClosure = x: + super.makeModulesClosure (x // { allowMissing = true; }); + }) ]; sound.enable = true;