hosts: move pipewire to services/

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2025-06-29 18:31:53 +05:30
parent 0979956f16
commit e1e72965f9
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
{ lib, config, pkgs, ... }: {
# sound stuff
sound.enable = true;
services.pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = true;
};
pulse.enable = true;
socketActivation = true;
wireplumber.enable = true;
};
}