asus-zephyrus-ga402: remove unused kernel parameter
This commit is contained in:
parent
f6bb34a52a
commit
cb4dc98f77
|
@ -1,4 +1,4 @@
|
||||||
{ lib, ... }:
|
{ lib, config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -22,4 +22,11 @@
|
||||||
boot = {
|
boot = {
|
||||||
kernelParams = [ "pcie_aspm.policy=powersupersave" ];
|
kernelParams = [ "pcie_aspm.policy=powersupersave" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
assertions = [
|
||||||
|
{
|
||||||
|
assertion = (lib.versionAtLeast config.boot.kernelPackages.kernel.version "6.2");
|
||||||
|
message = "The ga402 requires kernel version >=6.2 to ensure that fans are correctly managed. Please upgrade nixpkgs for this system.";
|
||||||
|
}
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue