nixos-config/user/hardware/bluetooth.nix

11 lines
135 B
Nix
Raw Normal View History

2023-10-07 02:42:24 +05:30
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
blueman
];
services = {
blueman-applet.enable = true;
};
}