need to use programs.noisetorch as noisetorch requires a security capability Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			921 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			921 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, ... }:
 | |
| 
 | |
| {
 | |
|   # rtkit is optional but recommended
 | |
|   security.rtkit.enable = true;
 | |
|   services = {
 | |
|     pipewire = {
 | |
|       enable = true;
 | |
|       alsa.enable = true;
 | |
|       alsa.support32Bit = true;
 | |
|       pulse.enable = true;
 | |
|       # If you want to use JACK applications, uncomment this
 | |
|       #jack.enable = true;
 | |
|     };
 | |
| 
 | |
|     pipewire.wireplumber.configPackages = [
 | |
|       (pkgs.writeTextDir "share/wireplumber/bluetooth.lua.d/51-bluez-config.lua" ''
 | |
|         bluez_monitor.properties = {
 | |
|         	["bluez5.enable-sbc-xq"] = true,
 | |
|         	["bluez5.enable-msbc"] = true,
 | |
|         	["bluez5.enable-hw-volume"] = true,
 | |
|         	["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]"
 | |
|         }
 | |
|       '')
 | |
|     ];
 | |
|     blueman.enable = true;
 | |
|   };
 | |
| 
 | |
|   hardware.bluetooth.enable = true;
 | |
|   hardware.bluetooth.powerOnBoot = true;
 | |
| 
 | |
|   environment.systemPackages = with pkgs; [ pavucontrol ];
 | |
| 
 | |
|   programs.noisetorch.enable = true;
 | |
| }
 |