lol

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

services.connman: remove with usage

authored by

6543 and committed by
GitHub
ef415e58 55a7f90e

+3 -3
+3 -3
nixos/modules/services/networking/connman.nix
··· 16 16 enableIwd = cfg.wifi.backend == "iwd"; 17 17 in 18 18 { 19 - meta.maintainers = with lib.maintainers; [ ]; 19 + meta.maintainers = [ ]; 20 20 21 21 imports = [ 22 22 (lib.mkRenamedOptionModule [ "networking" "connman" ] [ "services" "connman" ]) ··· 59 59 }; 60 60 61 61 networkInterfaceBlacklist = lib.mkOption { 62 - type = with lib.types; listOf str; 62 + type = lib.types.listOf lib.types.str; 63 63 default = [ 64 64 "vmnet" 65 65 "vboxnet" ··· 87 87 }; 88 88 89 89 extraFlags = lib.mkOption { 90 - type = with lib.types; listOf str; 90 + type = lib.types.listOf lib.types.str; 91 91 default = [ ]; 92 92 example = [ "--nodnsproxy" ]; 93 93 description = ''