nixos-config/user/hardware/bluetooth.nix

11 lines
122 B
Nix

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