summary refs log tree commit diff stats
path: root/modules/connman.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/connman.nix')
-rw-r--r--modules/connman.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/modules/connman.nix b/modules/connman.nix
deleted file mode 100644
index 0361f9c..0000000
--- a/modules/connman.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ config, pkgs, ... }:
-
-{ networking.connman = {
-    enable = true;
-    enableVPN = false;
-  };
-  networking.wireless.enable = true;
-
-  environment.systemPackages = with pkgs; [
-    cmst
-    connman-notify
-    connman_dmenu
-  ];
-}