From d42f74a20950787a4f586ab32b49064eb34059f3 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Mon, 20 Feb 2023 22:34:16 +0100 Subject: [PATCH] mayushii: Remove kernel pinning The problems are fixed in a newer kernel version. This theoretically is needed after f760e2cee4cd2fdd65ac27d4ba67c376d41323ee, in which linuxPackages_6_0 is no longer available. --- machines/mayushii/hardware-configuration.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/machines/mayushii/hardware-configuration.nix b/machines/mayushii/hardware-configuration.nix index 54f7f75..d6a74ec 100644 --- a/machines/mayushii/hardware-configuration.nix +++ b/machines/mayushii/hardware-configuration.nix @@ -7,9 +7,6 @@ boot = { kernelModules = [ "kvm-amd" ]; - # Workaround for DP Alt Mode hotplug not working in kernel (https://git.sbruder.de/simon/nixos-config/issues/69). - # requires mkForce because of nixos-hardware setting it to linuxPackages_latst - kernelPackages = lib.mkForce pkgs.linuxPackages_6_0; loader = { grub.enable = false; systemd-boot.enable = true;