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
All checks were successful
Deploy docs / build-and-deploy (push) Successful in 5s
Reviewed-on: #31
This commit is contained in:
commit
5f6ad9ecf5
2 changed files with 9 additions and 0 deletions
8
modules/nixos/common/boot.nix
Normal file
8
modules/nixos/common/boot.nix
Normal 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
|
||||
);
|
||||
}
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./boot.nix
|
||||
./environment.nix
|
||||
./htop.nix
|
||||
./nationalization.nix
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue