Files
nix-config-v2/modules/sound/pipewire.nix

12 lines
181 B
Nix
Raw Normal View History

2025-11-10 08:08:31 -05:00
# TODO: refactor into module
{ pkgs, ...}: {
2024-12-12 20:41:58 -05:00
services.pipewire = {
enable = true;
pulse.enable = true;
};
2025-11-10 08:08:31 -05:00
environment.systemPackages = with pkgs; [
helvum
];
2024-12-12 20:41:58 -05:00
}