14 lines
227 B
Nix
Raw Normal View History

2022-04-30 12:32:00 -04:00
{ pkgs, lib, gui, ... }: {
2022-04-28 22:12:16 -04:00
2022-04-30 12:32:00 -04:00
config = lib.mkIf gui.enable {
sound.enable = true;
hardware.pulseaudio.enable = true;
2022-04-28 22:12:16 -04:00
2022-04-30 12:32:00 -04:00
environment.systemPackages = with pkgs;
[
pamixer # Audio control
];
};
2022-04-28 22:12:16 -04:00
}