mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-18 17:11:39 +01:00
14 lines
240 B
Nix
14 lines
240 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
helvum
|
|
# easyeffects
|
|
pavucontrol
|
|
];
|
|
}
|