diff options
| author | Skullheadx <admonty1@protonmail.com> | 2026-04-24 21:32:57 -0400 |
|---|---|---|
| committer | Skullheadx <admonty1@protonmail.com> | 2026-04-24 21:32:57 -0400 |
| commit | cdd9494c931878d5c97e6c81c5bdb0a0f81b4364 (patch) | |
| tree | e42654b18a888cb8b53806997cfe3713b5748163 /configuration.nix | |
| parent | ignore DS_Store (diff) | |
| download | nixos-cdd9494c931878d5c97e6c81c5bdb0a0f81b4364.tar.gz nixos-cdd9494c931878d5c97e6c81c5bdb0a0f81b4364.tar.bz2 nixos-cdd9494c931878d5c97e6c81c5bdb0a0f81b4364.zip | |
bluetooth
Diffstat (limited to '')
| -rw-r--r-- | configuration.nix | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/configuration.nix b/configuration.nix index bb7ea2e..bdef3fc 100644 --- a/configuration.nix +++ b/configuration.nix @@ -124,7 +124,7 @@ hadolint fish golangci-lint - nodePackages_latest.jsonlint + # nodePackages_latest.jsonlint selene markdownlint-cli2 statix @@ -139,6 +139,8 @@ # tree sitter tree-sitter + ngrok + ]; programs.git = { @@ -222,6 +224,30 @@ enable = true; }; + 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; + }; + }; + }; + + services.blueman.enable = true; + # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ]; |
