nix-config/home/features/desktop/common/playerctl.nix
2023-12-27 22:47:58 +01:00

6 lines
109 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [playerctl];
services.playerctld = {
enable = true;
};
}