Update to linux 6.16.

This commit is contained in:
Tom Alexander
2025-09-06 17:36:57 -04:00
parent 96ea6c4232
commit b1c85417e1
4 changed files with 29 additions and 19 deletions

View File

@@ -94,12 +94,12 @@
# "net.ipv6.conf.default.use_tempaddr" = 2;
};
nixpkgs.overlays = [
(final: prev: {
inherit (pkgs-dda3dcd3f)
linux-firmware
;
})
];
# nixpkgs.overlays = [
# (final: prev: {
# inherit (pkgs-dda3dcd3f)
# linux-firmware
# ;
# })
# ];
}

View File

@@ -47,7 +47,7 @@
(lib.mkIf (!config.me.optimizations.enable) (
lib.mkMerge [
{
boot.kernelPackages = pkgs.linuxPackagesFor pkgs.linux_6_15;
boot.kernelPackages = pkgs.linuxPackagesFor pkgs.linux_6_16;
}
]
))
@@ -94,7 +94,7 @@
HZ = lib.kernel.freeform "300";
HZ_300 = lib.kernel.yes;
HZ_1000 = lib.kernel.no;
} prev.linux_6_15;
} prev.linux_6_16;
}
)
(final: prev: {
@@ -126,6 +126,15 @@
}
);
})
# (final: prev: {
# pythonPackagesOverlays = prev.pythonPackagesOverlays.extend (
# final': prev': {
# inherit (pkgs-unoptimized.pythonPackagesOverlays)
# coverage
# ;
# }
# );
# })
(final: prev: {
inherit (pkgs-unoptimized)
gsl
@@ -133,6 +142,7 @@
valkey
nix-serve-ng
rapidjson
assimp
;
})
];