mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 05:37:40 +03:00
nixos/hostapd: fix regression after refactoring to RFC42.
Switching from submodule notation from ({name, ...}: {}) to (submob: {}) seems to require a different accessing scheme.
This commit is contained in:
parent
7ce0abe77d
commit
0ac2ba763f
@ -921,9 +921,7 @@ in {
|
||||
};
|
||||
|
||||
config = let
|
||||
bss = bssSubmod.name;
|
||||
bssCfg = bssSubmod.config;
|
||||
|
||||
pairwiseCiphers =
|
||||
concatStringsSep " " (unique (bssCfg.authentication.pairwiseCiphers
|
||||
++ optionals bssCfg.authentication.enableRecommendedPairwiseCiphers ["CCMP" "CCMP-256" "GCMP" "GCMP-256"]));
|
||||
@ -964,9 +962,9 @@ in {
|
||||
} // optionalAttrs (bssCfg.bssid != null) {
|
||||
bssid = bssCfg.bssid;
|
||||
} // optionalAttrs (bssCfg.macAllow != [] || bssCfg.macAllowFile != null || bssCfg.authentication.saeAddToMacAllow) {
|
||||
accept_mac_file = "/run/hostapd/${bss}.mac.allow";
|
||||
accept_mac_file = "/run/hostapd/${bssCfg._module.args.name}.mac.allow";
|
||||
} // optionalAttrs (bssCfg.macDeny != [] || bssCfg.macDenyFile != null) {
|
||||
deny_mac_file = "/run/hostapd/${bss}.mac.deny";
|
||||
deny_mac_file = "/run/hostapd/${bssCfg._module.args.name}.mac.deny";
|
||||
} // optionalAttrs (bssCfg.authentication.mode == "none") {
|
||||
wpa = mkDefault 0;
|
||||
} // optionalAttrs (bssCfg.authentication.mode == "wpa3-sae") {
|
||||
@ -1051,7 +1049,6 @@ in {
|
||||
};
|
||||
|
||||
config.settings = let
|
||||
radio = radioSubmod.name;
|
||||
radioCfg = radioSubmod.config;
|
||||
in {
|
||||
driver = radioCfg.driver;
|
||||
|
@ -34,6 +34,7 @@ import ./make-test-python.nix ({ pkgs, lib, ...}:
|
||||
ssid = "nixos-test-mixed";
|
||||
authentication = {
|
||||
mode = "wpa3-sae-transition";
|
||||
saeAddToMacAllow = true;
|
||||
saePasswordsFile = pkgs.writeText "password" "reproducibility";
|
||||
wpaPasswordFile = pkgs.writeText "password" "reproducibility";
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user