From 7e41f52ec10044174bc7435595a70a9af017a407 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Sun, 13 Apr 2025 22:52:37 +0300 Subject: [PATCH] vno1-gdrx: fix rr-zen_workaround --- hosts/vno1-gdrx/configuration.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hosts/vno1-gdrx/configuration.nix b/hosts/vno1-gdrx/configuration.nix index 08c28c5..4724b9a 100644 --- a/hosts/vno1-gdrx/configuration.nix +++ b/hosts/vno1-gdrx/configuration.nix @@ -7,6 +7,7 @@ }: let nvme = "/dev/disk/by-id/nvme-Samsung_SSD_970_EVO_Plus_2TB_S6P1NX0TA00913P"; + linuxPackage = pkgs.linuxPackages_latest; in { imports = [ @@ -36,7 +37,7 @@ in boot = { kernelModules = [ "kvm-intel" ]; - kernelPackages = lib.mkForce pkgs.linuxPackages_latest; + kernelPackages = lib.mkForce linuxPackage; initrd = { availableKernelModules = [ "xhci_pci" @@ -173,7 +174,7 @@ in environment.systemPackages = with pkgs; [ (python3.withPackages (ps: [ ps.onvif-zeep ])) - linuxPackages.rr-zen_workaround + linuxPackage.rr-zen_workaround lutris ];