tvl-depot/system/modules/sound.nix

15 lines
257 B
Nix
Raw Normal View History

2020-03-28 04:32:13 +01:00
{ config, lib, pkgs, ... }:
{
# Enable sound.
sound.enable = true;
hardware.pulseaudio.enable = true;
nixpkgs.config.pulseaudio = true;
environment.systemPackages = with pkgs; [
pulseaudio-ctl
paprefs
pasystray
pavucontrol
];
}