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