From 15c8c47fe2a5f6c72f8327ed6a43c99e4a924d82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 19 Aug 2024 10:12:00 +0200 Subject: [PATCH] kobol/helios4: fix eval --- kobol/helios4/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kobol/helios4/default.nix b/kobol/helios4/default.nix index 532a7577..5b4207fe 100644 --- a/kobol/helios4/default.nix +++ b/kobol/helios4/default.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, lib, ... }: let linux_5_15_helios4 = pkgs.linux_5_15.override { kernelPatches = [ @@ -26,8 +26,8 @@ let ]; defconfig = "mvebu_v7_defconfig"; # Make the kernel build a bit faster by disabling GPU modules, which we don't need anyways - structuredExtraConfig = with pkgs.lib.kernel; { - DRM = no; + structuredExtraConfig = { + DRM = lib.mkForce pkgs.lib.kernel.no; }; }; in