synix/modules/nixos/common/boot.nix
sid 21b53744cd
All checks were successful
Flake check / flake-check (pull_request) Successful in 23s
Build tests / build-hosts (pull_request) Successful in 38s
fix CVE-2026-31431
2026-05-02 23:09:45 +02:00

8 lines
178 B
Nix

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