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