aboutsummaryrefslogtreecommitdiff
path: root/modules/nixos/base/bluetooth.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-03-30 23:19:12 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-03-30 23:19:12 +0200
commitd8b557099f4d4938f7f87c236f22d416191fcde9 (patch)
treee834855a15dd8d3d001bf4c6d428cd02502a16b0 /modules/nixos/base/bluetooth.nix
parentbb9cd7512a57bd348a645b8b888e25061518fa06 (diff)
parentbb42f5fb23ed842837071c2765c33bd65f7eb941 (diff)
Merge branch 'recovered-changes' into config-rewriteconfig-rewrite
Diffstat (limited to 'modules/nixos/base/bluetooth.nix')
-rw-r--r--modules/nixos/base/bluetooth.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/modules/nixos/base/bluetooth.nix b/modules/nixos/base/bluetooth.nix
deleted file mode 100644
index e850ee7..0000000
--- a/modules/nixos/base/bluetooth.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ pkgs, config, lib, ... }:
-
-{
- hardware.bluetooth = {
- enable = true;
- powerOnBoot = true;
- settings = {
- General = {
- # Shows battery charge of connected devices on supported
- # Bluetooth adapters. Defaults to 'false'.
- Experimental = true;
- # When enabled other devices can connect faster to us, however
- # the tradeoff is increased power consumption. Defaults to
- # 'false'.
- FastConnectable = true;
- };
- Policy = {
- # Enable all controllers when they are found. This includes
- # adapters present on start as well as adapters that are plugged
- # in later on. Defaults to 'true'.
- AutoEnable = true;
- };
- };
-};
-} \ No newline at end of file