mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-15 15:39:41 +01:00
32 lines
712 B
Nix
32 lines
712 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
inherit (lib) mkIf mkOption;
|
||
|
|
||
|
inherit (pkgs.callPackage ../linux-package.nix { }) linuxPackage surfacePatches isVersionOf versionsOfEnum;
|
||
|
|
||
|
cfg = config.microsoft-surface;
|
||
|
|
||
|
version = "6.11.4";
|
||
|
kernelPatches = surfacePatches {
|
||
|
inherit version;
|
||
|
patchFn = ./patches.nix;
|
||
|
};
|
||
|
kernelPackages = linuxPackage {
|
||
|
inherit version kernelPatches;
|
||
|
sha256 = "0mcg1rrw9b0lwj88jkaw6ic2mks8xh8i92v90sbr2x35ljhb0m5x";
|
||
|
ignoreConfigErrors=true;
|
||
|
};
|
||
|
|
||
|
in {
|
||
|
options.microsoft-surface.kernelVersion = mkOption {
|
||
|
type = versionsOfEnum version;
|
||
|
};
|
||
|
|
||
|
config = mkIf (isVersionOf cfg.kernelVersion version) {
|
||
|
boot = {
|
||
|
inherit kernelPackages;
|
||
|
};
|
||
|
};
|
||
|
}
|