From 7b61dd7f03ebf4f858c13c16885f4283ba6ee8af Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Sat, 23 Mar 2024 12:45:59 +0000 Subject: [PATCH] nixos/colony: Enable PCIe AER --- nixos/boxes/colony/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/boxes/colony/default.nix b/nixos/boxes/colony/default.nix index 100b888..1566b8a 100644 --- a/nixos/boxes/colony/default.nix +++ b/nixos/boxes/colony/default.nix @@ -60,8 +60,8 @@ in kernelPackages = (lib.my.c.kernel.lts pkgs).extend (self: super: { kernel = super.kernel.override { structuredExtraConfig = with lib.kernel; { - #SOME_OPT = yes; - #A_MOD = module; + ACPI_APEI_PCIEAER = yes; + PCIEAER = yes; }; }; });