tvl-depot/system/modules/sound.nix
Griffin Smith 28ccec9704 Initial commit
It begins...
2020-03-28 11:47:06 -04:00

14 lines
257 B
Nix

{ 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
];
}