summary refs log tree commit diff
diff options
context:
space:
mode:
authorBob van der Linden <bobvanderlinden@gmail.com>2018-12-19 22:40:58 +0100
committerBob van der Linden <bobvanderlinden@gmail.com>2019-03-24 21:15:29 +0100
commitb9e27ec43ef06f4a57debc0434e6633744ebdec5 (patch)
treedcf2a3086f8e41ea09ada75c3532a92e4b52d2ab
parent8062476f73339220d26e65a801ad8a44ccbefffb (diff)
downloadnixpkgs-b9e27ec43ef06f4a57debc0434e6633744ebdec5.tar
nixpkgs-b9e27ec43ef06f4a57debc0434e6633744ebdec5.tar.gz
nixpkgs-b9e27ec43ef06f4a57debc0434e6633744ebdec5.tar.bz2
nixpkgs-b9e27ec43ef06f4a57debc0434e6633744ebdec5.tar.lz
nixpkgs-b9e27ec43ef06f4a57debc0434e6633744ebdec5.tar.xz
nixpkgs-b9e27ec43ef06f4a57debc0434e6633744ebdec5.tar.zst
nixpkgs-b9e27ec43ef06f4a57debc0434e6633744ebdec5.zip
nixos/supplicant: /var/run -> /run
-rw-r--r--nixos/modules/services/networking/supplicant.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/supplicant.nix b/nixos/modules/services/networking/supplicant.nix
index 3c4321ab9e9..35c1e649e2e 100644
--- a/nixos/modules/services/networking/supplicant.nix
+++ b/nixos/modules/services/networking/supplicant.nix
@@ -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.";
             };