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