1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-08-07 12:07:48 +02:00
nixos-hardware/microsoft/surface/kernel/default.nix
2022-12-05 17:42:40 +13:00

16 lines
268 B
Nix

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