Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
979 B
Nix
35 lines
979 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
kernelVersion = config.boot.kernelPackages.kernel.version;
|
|
linuxKernelMinVersion = "5.8";
|
|
kernelPatch = pkgs.kernelPatches.ath_regd_optional // {
|
|
extraConfig = ''
|
|
ATH_USER_REGD y
|
|
'';
|
|
};
|
|
in
|
|
{
|
|
options.networking.wireless.athUserRegulatoryDomain = lib.mkOption {
|
|
default = false;
|
|
type = lib.types.bool;
|
|
description = ''
|
|
If enabled, sets the ATH_USER_REGD kernel config switch to true to
|
|
disable the enforcement of EEPROM regulatory restrictions for ath
|
|
drivers. Requires at least Linux ${linuxKernelMinVersion}.
|
|
'';
|
|
};
|
|
|
|
config = lib.mkIf config.networking.wireless.athUserRegulatoryDomain {
|
|
assertions = lib.singleton {
|
|
assertion = lib.lessThan 0 (builtins.compareVersions kernelVersion linuxKernelMinVersion);
|
|
message = "ATH_USER_REGD patch for kernels older than ${linuxKernelMinVersion} not ported yet!";
|
|
};
|
|
boot.kernelPatches = [ kernelPatch ];
|
|
};
|
|
}
|