1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-08-18 01:06:29 +02:00
nixos-hardware/microsoft/surface/kernel/default.nix
2023-01-09 23:05:15 +13:00

18 lines
292 B
Nix

{ lib, ... }:
let
inherit (lib) mkOption types;
in {
imports = [
./linux-5.19.17
./linux-6.0.11
./linux-6.0.17
];
options.microsoft-surface.kernelVersion = mkOption {
description = "Kernel Version to use (patched for MS Surface)";
type = types.enum [ ];
};
}