hardware/bluetooth: init from legacy

This commit is contained in:
Felix Buehler 2023-03-19 14:27:51 +01:00
parent d63c8a98be
commit 28b35bdd1c
5 changed files with 27 additions and 17 deletions

View file

@ -1,16 +0,0 @@
{ config, lib, pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
package = pkgs.bluezFull;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
services.blueman.enable = true;
environment.systemPackages = with pkgs; [
sony-headphones-client
];
}