nixos-config/user/hardware/bluetooth.nix

11 lines
122 B
Nix
Raw Permalink Normal View History

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