From 28d27a9f25e7be44dd40b0bd6eeafd4b7ecc2a13 Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Sat, 3 Aug 2024 15:09:48 +0300 Subject: [PATCH] kernel version and custop patch example --- configuration.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 72a2502..de81838 100644 --- a/configuration.nix +++ b/configuration.nix @@ -26,7 +26,16 @@ }; }; - boot.kernelPackages = pkgs.linuxPackages_6_8; + boot.kernelPackages = pkgs.linuxPackages_6_10; + # boot.kernelPatches = [ + # { + # name = "amd-drm-glitch-fix"; + # patch = (pkgs.fetchurl { + # url = "https://patchwork.freedesktop.org/patch/605900/raw/"; + # hash = "sha256-WR537QGQak5pwm4BnLiQ/pc7gAkn2SdI3QRvGTRZSFE="; + # }); + # } + # ]; boot.kernelParams = ["amd_pstate=active"]; boot.supportedFilesystems = ["ntfs"];