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

services.connman: remove with usage

6543 ef415e58 55a7f90e

Changed files
+3 -3
nixos
modules
services
networking
+3 -3
nixos/modules/services/networking/connman.nix
···
enableIwd = cfg.wifi.backend == "iwd";
in
{
-
meta.maintainers = with lib.maintainers; [ ];
+
meta.maintainers = [ ];
imports = [
(lib.mkRenamedOptionModule [ "networking" "connman" ] [ "services" "connman" ])
···
};
networkInterfaceBlacklist = lib.mkOption {
-
type = with lib.types; listOf str;
+
type = lib.types.listOf lib.types.str;
default = [
"vmnet"
"vboxnet"
···
};
extraFlags = lib.mkOption {
-
type = with lib.types; listOf str;
+
type = lib.types.listOf lib.types.str;
default = [ ];
example = [ "--nodnsproxy" ];
description = ''