Unverified Commit ef415e58 authored by 6543's avatar 6543 Committed by GitHub
Browse files

nixos/connman: remove `with` usage (#440928)

services.connman: remove with usage
parent 55a7f90e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ let
  enableIwd = cfg.wifi.backend == "iwd";
in
{
  meta.maintainers = with lib.maintainers; [ ];
  meta.maintainers = [ ];

  imports = [
    (lib.mkRenamedOptionModule [ "networking" "connman" ] [ "services" "connman" ])
@@ -59,7 +59,7 @@ in
      };

      networkInterfaceBlacklist = lib.mkOption {
        type = with lib.types; listOf str;
        type = lib.types.listOf lib.types.str;
        default = [
          "vmnet"
          "vboxnet"
@@ -87,7 +87,7 @@ in
      };

      extraFlags = lib.mkOption {
        type = with lib.types; listOf str;
        type = lib.types.listOf lib.types.str;
        default = [ ];
        example = [ "--nodnsproxy" ];
        description = ''