aboutsummaryrefslogtreecommitdiff
path: root/modules/workstation/hardware
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-02-04 20:16:29 +0100
committerKatharina Fey <kookie@spacekookie.de>2020-02-04 20:23:26 +0100
commita116982a26e76c89dce253b8c9538aaaeafbb1af (patch)
tree231047753fcfecfdb8a0697c56eac6af5945f429 /modules/workstation/hardware
parentc87cde76ce3221350c10baef6c680cc0ed120eca (diff)
bluetooth: adding conditional pulseaudio modes and blueman daemon
Diffstat (limited to 'modules/workstation/hardware')
-rw-r--r--modules/workstation/hardware/bluetooth/default.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/modules/workstation/hardware/bluetooth/default.nix b/modules/workstation/hardware/bluetooth/default.nix
index fb6a06a03e5..ca628c53cd3 100644
--- a/modules/workstation/hardware/bluetooth/default.nix
+++ b/modules/workstation/hardware/bluetooth/default.nix
@@ -1,5 +1,14 @@
{ ... }:
{
- hardware.bluetooth.enable = true;
+ hardware.bluetooth = {
+ enable = true;
+ config = {
+ General = {
+ Enable = "Source,Sink,Media,Socket";
+ };
+ };
+ };
+
+ services.blueman.enable = true;
}