summary refs log tree commit diff stats
path: root/system/settings/hardware/connman.nix
blob: 8604cb06cfe6cbad3353992da1e6fa5e8f086ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, pkgs, ... }:

{ services.connman = {
    enable = true;
    enableVPN = false;
  };
  networking.wireless.enable = true;

  environment.systemPackages = with pkgs; [
    connman-gtk
    connman-notify
    connman_dmenu
  ];
}