Unverified Commit 78a55086 authored by isabel's avatar isabel
Browse files

nixos/wpa_supplicant: don't use removed wpa_supplicant_ro_ssids

parent 1eddda1e
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -3,10 +3,6 @@
with lib;

let
  package = if cfg.allowAuxiliaryImperativeNetworks
    then pkgs.wpa_supplicant_ro_ssids
    else pkgs.wpa_supplicant;

  cfg = config.networking.wireless;
  opt = options.networking.wireless;

@@ -106,7 +102,7 @@ let
      wantedBy = [ "multi-user.target" ];
      stopIfChanged = false;

      path = [ package ];
      path = [ pkgs.wpa_supplicant ];
      # if `userControl.enable`, the supplicant automatically changes the permissions
      #  and owning group of the runtime dir; setting `umask` ensures the generated
      #  config file isn't readable (except to root);  see nixpkgs#267693