summary refs log tree commit diff stats
path: root/system/settings/hardware/connman.nix
blob: bdf29fdcf2892d3160afcf155189ad1f5352b910 (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; [
    cmst
    connman-notify
    connman_dmenu
  ];
}