tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
connmanMinimal: remove use of lowPrio
Doron Behar
5 years ago
a3d2e48a
fa5f7b89
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
connman
default.nix
+3
-3
pkgs/tools/networking/connman/default.nix
···
1
1
-
{ callPackage, lowPrio }:
1
1
+
{ callPackage }:
2
2
3
3
{
4
4
connmanFull = callPackage ./connman.nix {
···
9
9
enableTist = true;
10
10
};
11
11
12
12
-
connmanMinimal = lowPrio (callPackage ./connman.nix {
12
12
+
connmanMinimal = callPackage ./connman.nix {
13
13
enableOpenconnect = false;
14
14
enableOpenvpn = false;
15
15
enableVpnc = false;
···
31
31
enableStats = false;
32
32
enableClient = false;
33
33
# enableDatafiles = false; # If disabled, configuration and data files are not installed
34
34
-
});
34
34
+
};
35
35
36
36
# All the defaults
37
37
connman = callPackage ./connman.nix { };