12 lines
192 B
Nix
12 lines
192 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
hardware.bluetooth.enable = true;
|
|
|
|
# services.blueman.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
galaxy-buds-client
|
|
bluetuith
|
|
];
|
|
}
|