summary refs log tree commit diff stats
path: root/sound.nix
blob: 48ddf18b53e33a6d95be827092c8511b11e33d1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:

{
	hardware.bluetooth.enable = true;
	security.rtkit.enable = true;
	services.pipewire = {
		enable = true;
		alsa.enable = true;
		alsa.support32Bit = true;
		pulse.enable = true;
		jack.enable = true;
	};
}