Add pipewire and nvidia

This commit is contained in:
2025-09-26 01:06:26 +02:00
parent 81c83f6264
commit dc6e082a50
9 changed files with 69 additions and 18 deletions

View File

@@ -0,0 +1,20 @@
{
lib,
config,
pkgs,
...
}:
{
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
environment.systemPackages = with pkgs; [
pavucontrol
pulseaudio # for pactl
easyeffects
];
}