mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
15 lines
253 B
Nix
15 lines
253 B
Nix
{ lib, ... }:
|
|
|
|
let
|
|
inherit (lib) mkOption types;
|
|
|
|
in {
|
|
imports = [
|
|
./linux-6.10.x
|
|
];
|
|
|
|
options.microsoft-surface.kernelVersion = mkOption {
|
|
description = "Kernel Version to use (patched for MS Surface)";
|
|
type = types.enum [ ];
|
|
};
|
|
}
|