Skip to content

Commit

Permalink
supplicant nixos module: Allow not specifying the configFile path
Browse files Browse the repository at this point in the history
  • Loading branch information
shlevy committed Feb 5, 2017
1 parent 90bc1a8 commit 67ef18d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nixos/modules/services/networking/supplicant.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 67ef18d

Please sign in to comment.