Files
nix/home/modules/audio/default.nix

8 lines
153 B
Nix

{ osConfig, pkgs, ... }:
{
home.packages = with pkgs; [ pulsemixer ];
services.mpris-proxy.enable = osConfig.hardware.bluetooth.enable or false;
}