1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-20 05:17:22 +02:00
nixos-hardware/microsoft/surface/common/kernel/linux-6.9.x/default.nix

32 lines
711 B
Nix
Raw Normal View History

2023-11-26 00:43:48 +01:00
{ config, lib, pkgs, ... }:
let
inherit (lib) mkIf mkOption;
2023-11-26 00:43:48 +01:00
inherit (pkgs.callPackage ../linux-package.nix { }) linuxPackage surfacePatches isVersionOf versionsOfEnum;
2023-11-26 00:43:48 +01:00
cfg = config.microsoft-surface;
2024-06-10 22:24:42 +02:00
version = "6.9.3";
2023-11-26 00:43:48 +01:00
kernelPatches = surfacePatches {
inherit version;
patchFn = ./patches.nix;
};
kernelPackages = linuxPackage {
2023-11-26 00:43:48 +01:00
inherit version kernelPatches;
2024-06-10 22:24:42 +02:00
sha256 = "1bnzxparybwh320019pr2msaapas41dhjmvg4gy791rn05jc88f3";
ignoreConfigErrors=true;
2023-11-26 00:43:48 +01:00
};
in {
options.microsoft-surface.kernelVersion = mkOption {
type = versionsOfEnum version;
2023-11-26 00:43:48 +01:00
};
config = mkIf (isVersionOf cfg.kernelVersion version) {
2023-11-26 00:43:48 +01:00
boot = {
inherit kernelPackages;
};
};
}