diff options
Diffstat (limited to 'configuration.nix')
| -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 = [ ... ]; |
