Merge pull request #111155 from helsinki-systems/hostapd

nixos/hostapd: add interface type

Sandro 532dd98c 32fb3b7b

Changed files
+1
nixos
modules
services
networking
+1
nixos/modules/services/networking/hostapd.nix
···
interface = mkOption {
default = "";
example = "wlp2s0";
description = ''
The interfaces <command>hostapd</command> will use.
'';
···
interface = mkOption {
default = "";
example = "wlp2s0";
+
type = types.str;
description = ''
The interfaces <command>hostapd</command> will use.
'';