universe/users/modules/global/mpris.nix

14 lines
232 B
Nix

{ main, config, lib, pkgs, ... }:
{
config = lib.mkIf main.info.graphical {
services = {
mpris-proxy.enable = true;
playerctld.enable = true;
};
home.packages = with pkgs; [
playerctl
];
};
}