nix-config/home/features/desktop/common/playerctl.nix

7 lines
109 B
Nix
Raw Normal View History

2023-12-27 22:47:58 +01:00
{pkgs, ...}: {
home.packages = with pkgs; [playerctl];
services.playerctld = {
enable = true;
};
}