14 lines
237 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }: {
2022-04-28 22:12:16 -04:00
config = lib.mkIf config.gui.enable {
2022-04-30 12:32:00 -04:00
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
}