1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-10-03 03:27:22 +02:00
nixos-hardware/microsoft/surface/common/kernel/default.nix
2023-11-14 09:30:45 +00:00

16 lines
270 B
Nix

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