13 lines
222 B
Nix
13 lines
222 B
Nix
{ main, lib, pkgs, ... }:
|
|
lib.mkIf main.info.graphical
|
|
{
|
|
services = {
|
|
mpris-proxy.enable = true;
|
|
playerctld.enable = true;
|
|
easyeffects.enable = true;
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
playerctl
|
|
];
|
|
}
|