summaryrefslogtreecommitdiff
path: root/modules/bluetooth.nix
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2023-08-30 22:56:23 +0200
committerDevin Finlinson <devin.finlinson@pm.me>2023-08-30 22:56:23 +0200
commite68f05c78c57d2d719929b42e9659511d14af455 (patch)
tree15170de3c0e796b40b51674ef59a6dc122f8f7b9 /modules/bluetooth.nix
Creating initial commit.
Diffstat (limited to 'modules/bluetooth.nix')
-rw-r--r--modules/bluetooth.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/bluetooth.nix b/modules/bluetooth.nix
new file mode 100644
index 0000000..36e8f8f
--- /dev/null
+++ b/modules/bluetooth.nix
@@ -0,0 +1,12 @@
+{ config, pkgs, lib, ... }: {
+
+ hardware.bluetooth = {
+ enable = true;
+ # config = "
+ # [General]
+ # Enable=Source,Sink,Media,Socket
+ # ";
+ };
+
+ services.blueman.enable = true;
+}