1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-02 01:18:32 +02:00
nixos-hardware/microsoft/surface/common/kernel/default.nix
Stig Palmquist fef05bf9c8 surface: linux 6.5.11 -> 6.6.6
- linux-surface: arch-6.6.1-1 -> arch-6.6.4-1
- update config for 6.6
2023-12-11 23:13:10 +00:00

17 lines
270 B
Nix

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