1
1
Fork 0
mirror of https://git.sr.ht/~rouven/nixos-config synced 2025-03-02 04:50:56 +01:00
nixos-config/hosts/thinkpad/modules/sound/default.nix
2023-12-29 19:47:57 +01:00

15 lines
261 B
Nix

{ pkgs, ... }:
{
sound.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
environment.systemPackages = with pkgs; [
helvum
easyeffects
pavucontrol
];
}