about summary refs log tree commit diff
path: root/modules/audio.nix
blob: 2563c211764bc5463a73026238dc8227ac8b3355 (plain)
1
2
3
4
5
6
7
8
9
{ pkgs, ... }:
{
  hardware.pulseaudio.enable = true;

  environment.systemPackages = with pkgs; [
    pulsemixer
    pamixer
  ];
}