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/common.nix

11 lines
312 B

{ lib, ... }:
{
corenix.corebootConfig = {
CONFIG_PAYLOAD_NONE = "y"; # payload is added later
CONFIG_CBFS_SIZE = lib.mkDefault "0x300000";
CONFIG_USE_OPTION_TABLE = lib.mkDefault "y";
CONFIG_PCIEXP_CLK_PM = lib.mkDefault "y";
CONFIG_GENERIC_LINEAR_FRAMEBUFFER = lib.mkDefault "y";
};
}