pulsebert: fix eval

This commit is contained in:
Sandro - 2021-10-19 00:24:18 +02:00
parent b61ae77b71
commit 58891a309e
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 9 additions and 2 deletions

View File

@ -18,8 +18,15 @@ in
uboot.enable = true;
};
};
kernelPackages = pkgs.linuxPackages_5_13;
kernelPackages = pkgs.linuxPackages_latest;
# TODO: can be removed when https://github.com/NixOS/nixpkgs/pull/142015 is merged
kernelPatches = [{
name = "disable-FB_SIMPLE";
patch = null;
extraConfig = ''
FB_SIMPLE m
'';
}];
tmpOnTmpfs = true;
};