Skip to content

Commit ef415e5

Browse files
authored
nixos/connman: remove with usage (#440928)
services.connman: remove with usage
1 parent 55a7f90 commit ef415e5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

nixos/modules/services/networking/connman.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let
1616
enableIwd = cfg.wifi.backend == "iwd";
1717
in
1818
{
19-
meta.maintainers = with lib.maintainers; [ ];
19+
meta.maintainers = [ ];
2020

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

6161
networkInterfaceBlacklist = lib.mkOption {
62-
type = with lib.types; listOf str;
62+
type = lib.types.listOf lib.types.str;
6363
default = [
6464
"vmnet"
6565
"vboxnet"
@@ -87,7 +87,7 @@ in
8787
};
8888

8989
extraFlags = lib.mkOption {
90-
type = with lib.types; listOf str;
90+
type = lib.types.listOf lib.types.str;
9191
default = [ ];
9292
example = [ "--nodnsproxy" ];
9393
description = ''

0 commit comments

Comments
 (0)