nixos/networking.wireless.athUserRegulatoryDomain: remove with lib;

This commit is contained in:
Felix Buehler 2024-08-24 22:05:28 +02:00
parent 21ed56970e
commit e1e8351aaa

View File

@ -1,6 +1,4 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
with lib;
let let
kernelVersion = config.boot.kernelPackages.kernel.version; kernelVersion = config.boot.kernelPackages.kernel.version;
linuxKernelMinVersion = "5.8"; linuxKernelMinVersion = "5.8";
@ -11,9 +9,9 @@ let
}; };
in in
{ {
options.networking.wireless.athUserRegulatoryDomain = mkOption { options.networking.wireless.athUserRegulatoryDomain = lib.mkOption {
default = false; default = false;
type = types.bool; type = lib.types.bool;
description = '' description = ''
If enabled, sets the ATH_USER_REGD kernel config switch to true to If enabled, sets the ATH_USER_REGD kernel config switch to true to
disable the enforcement of EEPROM regulatory restrictions for ath disable the enforcement of EEPROM regulatory restrictions for ath
@ -21,9 +19,9 @@ in
''; '';
}; };
config = mkIf config.networking.wireless.athUserRegulatoryDomain { config = lib.mkIf config.networking.wireless.athUserRegulatoryDomain {
assertions = singleton { assertions = lib.singleton {
assertion = lessThan 0 (builtins.compareVersions kernelVersion linuxKernelMinVersion); assertion = lib.lessThan 0 (builtins.compareVersions kernelVersion linuxKernelMinVersion);
message = "ATH_USER_REGD patch for kernels older than ${linuxKernelMinVersion} not ported yet!"; message = "ATH_USER_REGD patch for kernels older than ${linuxKernelMinVersion} not ported yet!";
}; };
boot.kernelPatches = [ kernelPatch ]; boot.kernelPatches = [ kernelPatch ];