mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
20 lines
376 B
Nix
20 lines
376 B
Nix
![]() |
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
hardware.bluetooth = {
|
||
|
enable = true;
|
||
|
package = pkgs.bluezFull;
|
||
|
config = {
|
||
|
General = {
|
||
|
Enable = "Source,Sink,Media,Socket";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
hardware.pulseaudio = {
|
||
|
enable = true;
|
||
|
extraModules = [ pkgs.pulseaudio-modules-bt ];
|
||
|
package = pkgs.pulseaudioFull;
|
||
|
};
|
||
|
services.blueman.enable = true;
|
||
|
}
|