nixos/supplicant: /var/run -> /run

This commit is contained in:
Bob van der Linden 2018-12-19 22:40:58 +01:00
parent 8062476f73
commit b9e27ec43e
No known key found for this signature in database
GPG Key ID: 2A90361F99CF1795

View File

@ -132,7 +132,7 @@ in
extraCmdArgs = mkOption {
type = types.str;
default = "";
example = "-e/var/run/wpa_supplicant/entropy.bin";
example = "-e/run/wpa_supplicant/entropy.bin";
description =
"Command line arguments to add when executing <literal>wpa_supplicant</literal>.";
};
@ -164,7 +164,7 @@ in
socketDir = mkOption {
type = types.str;
default = "/var/run/wpa_supplicant";
default = "/run/wpa_supplicant";
description = "Directory of sockets for controlling wpa_supplicant.";
};