forked from extern/nix-config
76bfdf10b6
This was previously disabled when testing NixOS networks.
21 lines
291 B
Nix
21 lines
291 B
Nix
{ pkgs, ... }: {
|
|
services.pipewire = {
|
|
enable = true;
|
|
|
|
alsa = {
|
|
enable = true;
|
|
support32Bit = true;
|
|
};
|
|
|
|
pulse.enable = true;
|
|
|
|
lowLatency.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
pulseaudio
|
|
];
|
|
|
|
security.rtkit.enable = true;
|
|
}
|