nixos/hostapd: add missing stringification of path in INI format
This commit is contained in:
parent
7eefa92432
commit
bbac87a2dd
1 changed files with 1 additions and 1 deletions
|
@ -987,7 +987,7 @@ in {
|
|||
} // optionalAttrs (bssCfg.authentication.wpaPassword != null) {
|
||||
wpa_passphrase = bssCfg.authentication.wpaPassword;
|
||||
} // optionalAttrs (bssCfg.authentication.wpaPskFile != null) {
|
||||
wpa_psk_file = bssCfg.authentication.wpaPskFile;
|
||||
wpa_psk_file = toString bssCfg.authentication.wpaPskFile;
|
||||
};
|
||||
|
||||
dynamicConfigScripts = let
|
||||
|
|
Loading…
Reference in a new issue