summary refs log tree commit diff stats
path: root/modules/connman.nix
blob: cbd216cf18e39c492aa25fd6089ca65b8c9d5c66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, ... }:

{ networking.connman = {
    enable = true;
  };

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