dotfiles/modules/hardware/audio.nix
2022-04-28 22:12:16 -04:00

12 lines
167 B
Nix

{ pkgs, ... }: {
sound.enable = true;
hardware.pulseaudio.enable = true;
environment.systemPackages = with pkgs;
[
pamixer # Audio control
];
}