nixos-config/user/hardware/bluetooth.nix
2023-10-06 16:12:24 -05:00

11 lines
135 B
Nix

{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
blueman
];
services = {
blueman-applet.enable = true;
};
}