3ef30056c4
just retain the options we need to pass the tests
20 lines
390 B
Nix
20 lines
390 B
Nix
{ lib, pkgs, config, ...}:
|
|
let
|
|
inherit (lib) mkEnableOption mkOption types isDerivation hasAttr ;
|
|
inherit (pkgs.pseudofile) dir symlink;
|
|
inherit (pkgs) busybox;
|
|
|
|
in {
|
|
config = {
|
|
kernel = rec {
|
|
config = {
|
|
CFG80211= "y";
|
|
MAC80211= "y";
|
|
MAC80211_MESH= "y";
|
|
RFKILL= "y";
|
|
WLAN = "y";
|
|
};
|
|
checkedConfig = config;
|
|
};
|
|
};
|
|
}
|