mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-13 22:49:41 +01:00
kobol/helios4: fix eval
This commit is contained in:
parent
04a366f28c
commit
15c8c47fe2
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, lib, ... }:
|
||||||
let
|
let
|
||||||
linux_5_15_helios4 = pkgs.linux_5_15.override {
|
linux_5_15_helios4 = pkgs.linux_5_15.override {
|
||||||
kernelPatches = [
|
kernelPatches = [
|
||||||
|
@ -26,8 +26,8 @@ let
|
||||||
];
|
];
|
||||||
defconfig = "mvebu_v7_defconfig";
|
defconfig = "mvebu_v7_defconfig";
|
||||||
# Make the kernel build a bit faster by disabling GPU modules, which we don't need anyways
|
# Make the kernel build a bit faster by disabling GPU modules, which we don't need anyways
|
||||||
structuredExtraConfig = with pkgs.lib.kernel; {
|
structuredExtraConfig = {
|
||||||
DRM = no;
|
DRM = lib.mkForce pkgs.lib.kernel.no;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
Loading…
Reference in a new issue