1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-11 23:33:38 +02:00
nixos-hardware/microsoft/surface/common/kernel/linux-6.1.53/default.nix
2023-09-18 09:44:12 +00:00

39 lines
905 B
Nix

{ config, lib, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
inherit (pkgs) fetchurl;
inherit (pkgs.callPackage ../linux-package.nix { }) linuxPackage repos;
cfg = config.microsoft-surface;
version = "6.1.53";
extraMeta.branch = "6.1";
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";
sha256 = "0zpdg3fcc12iyjhfs5w7cw75700z4i8m9jcg38mlzlhh92hf0msz";
};
};
in {
options.microsoft-surface.kernelVersion = mkOption {
type = types.enum [ "6.1.53" ];
};
config = mkIf (cfg.kernelVersion == "6.1.53") {
boot = {
inherit kernelPackages;
};
};
}