blob: 99af36c61dfc07156fc029781d17d5910929b251 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{ pkgs, ... }:
{
environment.systemPackages = builtins.attrValues {
inherit (pkgs)
easyeffects
pamixer
pavucontrol
pwvucontrol
qpwgraph;
};
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
wireplumber.enable = true;
jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
# media-session.enable = true;
};
#sound.enable = true; # disabled per https://github.com/NixOS/nixpkgs/issues/319809
}
|