1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-01 17:08:32 +02:00
nixos-hardware/microsoft/surface/common/kernel/default.nix
2023-11-26 12:43:48 +13:00

18 lines
288 B
Nix

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