dotfiles/modules/hardware/audio.nix

12 lines
167 B
Nix
Raw Normal View History

2022-04-29 02:12:16 +00:00
{ pkgs, ... }: {
sound.enable = true;
hardware.pulseaudio.enable = true;
environment.systemPackages = with pkgs;
[
pamixer # Audio control
];
}