nixos/extra/sound.nix
2021-02-28 22:16:36 +01:00

11 lines
182 B
Nix

{ config, pkgs, ... }:
{
sound.enable = true;
hardware.pulseaudio.enable = true;
environment.systemPackages = with pkgs; [
noisetorch
pavucontrol
playerctl
];
}