nix-dotfiles/modules/network/bluetooth/default.nix

8 lines
144 B
Nix
Raw Normal View History

2023-11-19 19:31:04 -08:00
{ config, pkgs, lib, ... }:
{
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
services.blueman.enable = true;
}