supplicant nixos module: Allow not specifying the configFile path

wip/yesman
Shea Levy 7 years ago
parent 90bc1a8595
commit 67ef18d01a
  1. 3
      nixos/modules/services/networking/supplicant.nix

@ -82,7 +82,8 @@ in
configFile = {
path = mkOption {
type = types.path;
type = types.nullOr types.path;
default = null;
example = literalExample "/etc/wpa_supplicant.conf";
description = ''
External <literal>wpa_supplicant.conf</literal> configuration file.

Loading…
Cancel
Save