summaryrefslogtreecommitdiffstats
path: root/systems/bluetooth.nix
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2023-10-14 10:53:18 -0400
committerJon Santmyer <jon@jonsantmyer.com>2023-10-14 10:53:18 -0400
commit5897af1a6c355f77c78f342d1d6f070670d14a4c (patch)
treeceacea8620f7a4f5b684837f8019244933286864 /systems/bluetooth.nix
parent972bff32235bbd414cbbaba5ac3eeb7979c2bad6 (diff)
downloadnix-config-5897af1a6c355f77c78f342d1d6f070670d14a4c.tar.gz
nix-config-5897af1a6c355f77c78f342d1d6f070670d14a4c.tar.bz2
nix-config-5897af1a6c355f77c78f342d1d6f070670d14a4c.zip
remove redundant system folder. add useful programs.
Diffstat (limited to 'systems/bluetooth.nix')
-rw-r--r--systems/bluetooth.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/systems/bluetooth.nix b/systems/bluetooth.nix
deleted file mode 100644
index d8eb230..0000000
--- a/systems/bluetooth.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ inputs, outputs, config, hostname, username, lib, pkgs, stateVersion, ... }:
-{
- hardware.bluetooth.enable = true;
- services.blueman.enable = true;
-
- environment.etc = {
- "wireplumber/bluetooth.lua.d/51-bluez-config.lua".text = ''
-bluez_monitor.properties = {
- ["bluez5.enable-sbc-xq"] = true,
- ["bluez5.enable-msbc"] = true,
- ["bluez5.enable-hw-volume"] = true,
- ["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]"
-}
- '';
- };
-}