From 09aeddf7cf3e3a1d12b4d3f8d9d33f0610141c82 Mon Sep 17 00:00:00 2001 From: Astro Date: Thu, 4 Jan 2024 23:31:34 +0100 Subject: [PATCH] modules/rpi-netboot: add hack --- modules/rpi-netboot.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/rpi-netboot.nix b/modules/rpi-netboot.nix index 1c6a4b15..f1c34ad3 100644 --- a/modules/rpi-netboot.nix +++ b/modules/rpi-netboot.nix @@ -46,6 +46,13 @@ raspberrypi-eeprom ]; + nixpkgs.overlays = [ (self: super: { + # HACK: broken tests for aarch64 + xdg-desktop-portal = super.xdg-desktop-portal.overrideAttrs { + doCheck = false; + }; + }) ]; + services.journald.extraConfig = '' Storage=volatile '';