From b65a4dbfcbc012509f74857f30e0e8c736d4d5ab Mon Sep 17 00:00:00 2001 From: "Chinmay D. Pai" Date: Mon, 23 Sep 2024 11:41:01 +0530 Subject: [PATCH] chore: remove pcie_aspm policy Umm, this is a hard one as to why it was added in the first place. I think someone had told me about it, but it seems like it's not really required, and not recommended to be run on systems that do not support it by default. Signed-off-by: Chinmay D. Pai --- modules/nixos/core/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/nixos/core/default.nix b/modules/nixos/core/default.nix index 1ead538..74e8925 100644 --- a/modules/nixos/core/default.nix +++ b/modules/nixos/core/default.nix @@ -42,9 +42,7 @@ initrd.verbose = false; # Default to the latest kernel package. kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; - # Force performance policy for Active State Performance Management. kernelParams = [ - "pcie_aspm.policy=performance" "nmi_watchdog=0" ];