From ef415e5892f3c0389ef78f449fbc75cee180ad3a Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Sun, 7 Sep 2025 18:03:54 +0200 Subject: [PATCH] nixos/connman: remove `with` usage (#440928) services.connman: remove with usage --- nixos/modules/services/networking/connman.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/networking/connman.nix b/nixos/modules/services/networking/connman.nix index a59a494f6337..d3a8e236358e 100644 --- a/nixos/modules/services/networking/connman.nix +++ b/nixos/modules/services/networking/connman.nix @@ -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 = ''