dotfiles/modules/hardware/audio.nix
Noah Masur 417623965e refactor arguments to options
also change theme to colorscheme
2022-05-05 23:02:01 -04:00

14 lines
237 B
Nix

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