refactor: Update kernel version and source URL

This commit is contained in:
Tristan D. 2024-10-18 14:45:21 +02:00
parent c04f0b8f42
commit 50e07fbdba
Signed by: tristan
SSH key fingerprint: SHA256:3RU4RLOoM8oAjFU19f1W6t8uouZbA7GWkaSW6rjp1k8

View file

@ -21,14 +21,18 @@
boot =
let
version = "6.12-rc3";
version = "6.12-rc1";
# version = "6.12-rc3";
kernelPatches = pkgs.callPackage "${inputs.nixpkgs}/pkgs/os-specific/linux/kernel/patches.nix" { };
ref = "6efbea77b390604a7be7364583e19cd2d6a1291b";
# ref = "6efbea77b390604a7be7364583e19cd2d6a1291b";
ref = "bc6d2d10418e1bfdb95b16f5dd4cca42d5dec766";
linux_mainline = { buildLinux, fetchzip, ... } @ args: buildLinux {
version = version;
src = fetchzip {
url = "https://git.kernel.org/torvalds/t/linux-${ref}.tar.gz";
hash = "sha256-TP1sBMr34gAfIWD/LBlhorSebABUYsQE4OBuDFb348c=";
# url = "https://git.kernel.org/torvalds/t/linux-${ref}.tar.gz";
# hash = "";
url = "https://github.com/koverstreet/bcachefs/archive/${ref}.tar.gz";
hash = "sha256-tq0dXKVtW1R+Yenv7HG4Qqc1P49OzcJgICpoZLkA/K4=";
};
modDirVersion = lib.versions.pad 3 version;
kernelPatches = [