fix CVE-2026-31431
All checks were successful
Flake check / flake-check (pull_request) Successful in 23s
Build tests / build-hosts (pull_request) Successful in 38s

This commit is contained in:
sid 2026-05-02 23:09:45 +02:00
parent b61461258d
commit 21b53744cd
2 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{ lib, pkgs, ... }:
{
# fix CVE-2026-31431
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.18.22") (
lib.mkDefault pkgs.linuxPackages_6_18
);
}