blob: cf267d4c6092d73d8f2c31171a8513a7fe47de02 (
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
31
32
33
34
35
36
37
|
{ pkgs, ... }:
{
environment.systemPackages = builtins.attrValues {
inherit (pkgs)
easyeffects
pamixer
pavucontrol
pwvucontrol
qpwgraph;
};
hardware.pulseaudio.enable = false;
security.pam.loginLimits = [
{ domain = "@audio"; item = "memlock"; type = "-" ; value = "unlimited"; }
{ domain = "@audio"; item = "rtprio" ; type = "-" ; value = "99" ; }
{ domain = "@audio"; item = "nofile" ; type = "soft"; value = "99999" ; }
{ domain = "@audio"; item = "nofile" ; type = "hard"; value = "524288" ; }
];
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
}
|