feat(hosts/orion): enable bluetooth on boot

This commit is contained in:
Price Hiller 2024-10-27 18:11:23 -05:00
parent b2d92e001e
commit b500cc8400
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -1,12 +1,13 @@
{ {
inputs,
lib,
pkgs, pkgs,
... ...
}: }:
{ {
hardware.bluetooth.enable = true; hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.blueman.enable = true; services.blueman.enable = true;
environment.systemPackages = with pkgs; [ bluez ]; environment.systemPackages = with pkgs; [ bluez ];