We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
with
1 parent 55a7f90 commit ef415e5Copy full SHA for ef415e5
1 file changed
nixos/modules/services/networking/connman.nix
@@ -16,7 +16,7 @@ let
16
enableIwd = cfg.wifi.backend == "iwd";
17
in
18
{
19
- meta.maintainers = with lib.maintainers; [ ];
+ meta.maintainers = [ ];
20
21
imports = [
22
(lib.mkRenamedOptionModule [ "networking" "connman" ] [ "services" "connman" ])
@@ -59,7 +59,7 @@ in
59
};
60
61
networkInterfaceBlacklist = lib.mkOption {
62
- type = with lib.types; listOf str;
+ type = lib.types.listOf lib.types.str;
63
default = [
64
"vmnet"
65
"vboxnet"
@@ -87,7 +87,7 @@ in
87
88
89
extraFlags = lib.mkOption {
90
91
default = [ ];
92
example = [ "--nodnsproxy" ];
93
description = ''
0 commit comments