nixos-config/components/chaospott.nix

11 lines
227 B
Nix
Raw Normal View History

2024-06-14 18:52:15 +02:00
{ config, lib, pkgs, ... }:
with lib;
{
config = mkIf (config.components.gui.audio.enable) {
hardware.pulseaudio.zeroconf.discovery.enable = true;
environment.systemPackages = with pkgs; [
paprefs
];
};
}