My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/corenix/configs/boards/x230-fhd/default.nix

19 lines
467 B

{ pkgs, ... }:
{
corenix.corebootConfig = {
CONFIG_VENDOR_LENOVO = "y";
CONFIG_BOARD_LENOVO_X230_FHD = "y";
};
corenix.package = pkgs.coreboot.overrideAttrs (oA: {
src = pkgs.fetchgit {
url = "https://github.com/petabyteboy/coreboot.git";
rev = "6e36562d08112d8a93088ee3d2b2ef0da6947e81";
fetchSubmodules = true;
sha256 = "06iaksr0cqp42r91aa02v5ww0sx1h2v0knfbw0mj86sg5bhybcs1";
};
});
seabios.ps2Timeout = 5000;
}