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

11 lines
205 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;
2023-11-19 20:48:22 -08:00
environment.systemPackages = with pkgs; [
blueman
];
2023-11-19 19:31:04 -08:00
}