Setup bluetooth

This commit is contained in:
Emmet 2023-10-06 16:12:24 -05:00
parent c0afbb94f1
commit 9002e4f5cc
2 changed files with 11 additions and 0 deletions

View file

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