universe/users/modules/global/music.nix

12 lines
199 B
Nix

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