{ config, lib, pkgs, ... }: let inherit (lib) mkIf mkOption; inherit (pkgs.callPackage ../linux-package.nix { }) linuxPackage surfacePatches isVersionOf versionsOfEnum; cfg = config.microsoft-surface; version = "6.6.25"; kernelPatches = surfacePatches { inherit version; patchFn = ./patches.nix; }; kernelPackages = linuxPackage { inherit version kernelPatches; sha256 = "0i0zvqlj02rm6wpbidji0rn9559vrpfc1b8gbfjk70lhhyz11llr"; ignoreConfigErrors=true; }; in { options.microsoft-surface.kernelVersion = mkOption { type = versionsOfEnum version; }; config = mkIf (isVersionOf cfg.kernelVersion version) { boot = { inherit kernelPackages; }; }; }