1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-03 03:23:35 +02:00
nixos-hardware/microsoft/surface/kernel/default.nix
2022-12-31 11:57:44 +01:00

17 lines
273 B
Nix

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