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

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