mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
15 lines
277 B
Nix
15 lines
277 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
security.rtkit.enable = true;
|
|
services.pipewire = {
|
|
|
|
enable = true;
|
|
wireplumber.enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
environment.systemPackages = [
|
|
pkgs.pwvucontrol
|
|
];
|
|
}
|