1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 11:03:33 +02:00
nixos-hardware/microsoft/surface/common/kernel/default.nix

16 lines
252 B
Nix
Raw Permalink Normal View History

2022-12-31 11:52:38 +01:00
{ lib, ... }:
2022-11-28 08:23:51 +01:00
let
inherit (lib) mkOption types;
2022-11-28 08:23:51 +01:00
in {
imports = [
2024-04-13 17:58:07 +02:00
./linux-6.8.x
];
2022-12-05 05:39:24 +01:00
options.microsoft-surface.kernelVersion = mkOption {
description = "Kernel Version to use (patched for MS Surface)";
2022-12-05 05:39:24 +01:00
type = types.enum [ ];
};
}