Merge pull request 'fix CVE-2026-31431' (#31) from develop into release-25.11
All checks were successful
Deploy docs / build-and-deploy (push) Successful in 5s

Reviewed-on: #31
This commit is contained in:
sid 2026-05-02 23:11:14 +02:00
commit 5f6ad9ecf5
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
);
}

View file

@ -1,5 +1,6 @@
{ {
imports = [ imports = [
./boot.nix
./environment.nix ./environment.nix
./htop.nix ./htop.nix
./nationalization.nix ./nationalization.nix