nixos-config/components/chaospott.nix
2024-06-14 18:52:15 +02:00

11 lines
227 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = mkIf (config.components.gui.audio.enable) {
hardware.pulseaudio.zeroconf.discovery.enable = true;
environment.systemPackages = with pkgs; [
paprefs
];
};
}