nixos/home/modules/playerctl.nix

43 lines
916 B
Nix

{ lib, config, pkgs, ... }:
let
cfg = config.snowhawk.playerctl;
in
{
options.snowhawk.playerctl = {
enable = lib.mkEnableOption "playerctl";
};
config = lib.mkIf cfg.enable {
services.playerctld.enable = true;
home.packages = with pkgs; [
playerctl
];
systemd.user.services.sxhkd = {
Unit = {
Description = "sxhkd service";
PartOf = [ "graphical-session.target" ];
};
Service = {
Type = "exec";
ExecStart = "${pkgs.sxhkd}/bin/sxhkd";
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
services.sxhkd = {
enable = true;
keybindings = {
"XF86AudioPlay" = "${pkgs.playerctl}/bin/playerctl play-pause";
"XF86AudioPrev" = "${pkgs.playerctl}/bin/playerctl previous";
"XF86AudioNext" = "${pkgs.playerctl}/bin/playerctl next";
};
};
};
}