bd17dc4706
- "kernel" and "repos.nix" --> "common/" - "firmware/surface-go/ath10k" --> "surface-go/firmware/ath10k" - Update where "kernel", "firmware/surface-go" and "repos.nix" can be found
17 lines
273 B
Nix
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 [ ];
|
|
};
|
|
}
|