mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-31 19:39:33 +01:00
13 lines
280 B
Nix
13 lines
280 B
Nix
{config, pkgs, ...}:
|
|
{
|
|
security.rtkit.enable = true;
|
|
services.pipewire.enable = false;
|
|
hardware.pulseaudio.enable = true;
|
|
hardware.pulseaudio.support32Bit = true;
|
|
services.pipewire.wireplumber.enable = true;
|
|
|
|
environment.systemPackages = [
|
|
pkgs.pwvucontrol
|
|
];
|
|
}
|