mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-12-10 07:59:43 +00:00
7 lines
133 B
Nix
7 lines
133 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
package = pkgs.writeShellScriptBin "play-pause-action" ''
|
|
${pkgs.playerctl}/bin/playerctl play-pause
|
|
'';
|
|
}
|