1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-08 04:13:29 +02:00
nixos-hardware/microsoft/surface/common/kernel/linux-6.4.16/default.nix

39 lines
905 B
Nix
Raw Normal View History

2023-08-29 02:28:09 +02:00
{ config, lib, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
inherit (pkgs) fetchurl;
inherit (pkgs.callPackage ../linux-package.nix { }) linuxPackage repos;
cfg = config.microsoft-surface;
2023-09-17 14:19:30 +02:00
version = "6.4.16";
2023-08-29 02:28:09 +02:00
extraMeta.branch = "6.4";
patchDir = repos.linux-surface + "/patches/${extraMeta.branch}";
kernelPatches = pkgs.callPackage ./patches.nix {
inherit (lib) kernel;
inherit version patchDir;
};
kernelPackages = linuxPackage {
inherit version extraMeta kernelPatches;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
2023-09-17 14:19:30 +02:00
sha256 = "0zgj1z97jyx7wf12zrnlcp0mj4cl43ais9qsy6dh1jwylf2fq9ln";
2023-08-29 02:28:09 +02:00
};
};
in {
options.microsoft-surface.kernelVersion = mkOption {
2023-09-17 14:19:30 +02:00
type = types.enum [ "6.4.16" ];
2023-08-29 02:28:09 +02:00
};
2023-09-17 14:19:30 +02:00
config = mkIf (cfg.kernelVersion == "6.4.16") {
2023-08-29 02:28:09 +02:00
boot = {
inherit kernelPackages;
};
};
}