nixos/extra/sound.nix

12 lines
182 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, pkgs, ... }:
{
sound.enable = true;
hardware.pulseaudio.enable = true;
environment.systemPackages = with pkgs; [
noisetorch
pavucontrol
playerctl
];
}