diff options
author | Alan Pearce | 2017-09-09 19:32:00 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-09 19:32:00 +0200 |
commit | d541dcbb64da728b7b630f83463e0dedc420747c (patch) | |
tree | ae96299f8344f8753d57f404a50c120534dbe884 | |
parent | 98aafa849eb7aa534a7ba14ecc0016072977553e (diff) | |
download | nixos-configuration-d541dcbb64da728b7b630f83463e0dedc420747c.tar.lz nixos-configuration-d541dcbb64da728b7b630f83463e0dedc420747c.tar.zst nixos-configuration-d541dcbb64da728b7b630f83463e0dedc420747c.zip |
connman: Add missing settings
-rw-r--r-- | modules/connman.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/connman.nix b/modules/connman.nix index cbd216c..0361f9c 100644 --- a/modules/connman.nix +++ b/modules/connman.nix @@ -2,7 +2,9 @@ { networking.connman = { enable = true; + enableVPN = false; }; + networking.wireless.enable = true; environment.systemPackages = with pkgs; [ cmst |