nix-config/modules/system/bluetooth.nix
2024-03-13 17:12:48 +01:00

6 lines
114 B
Nix

{ pkgs, ... }: {
services.blueman.enable = true;
environment.systemPackages = with pkgs; [
blueman
];
}