Improve audio control support

This commit is contained in:
Evie Litherland-Smith 2023-04-08 10:33:23 +01:00
parent dd12c78a2f
commit 2ebc666a7b

View file

@ -1,8 +1,14 @@
{ ... }: { pkgs, ... }:
{ {
# Enable CUPS to print documents. # Enable CUPS to print documents.
services.printing.enable = true; services.printing.enable = true;
environment.systemPackages = [
pkgs.pavucontrol
pkgs.pamixer
pkgs.pulseaudio
];
# Enable sound with pipewire. # Enable sound with pipewire.
sound.enable = true; sound.enable = true;
hardware.pulseaudio.enable = false; hardware.pulseaudio.enable = false;
@ -13,4 +19,5 @@
alsa.support32Bit = true; alsa.support32Bit = true;
pulse.enable = true; pulse.enable = true;
}; };
programs.noisetorch.enable = true;
} }