nixos/modules/home/hyprland.nix
2025-03-05 13:27:53 -08:00

14 lines
287 B
Nix

{ pkgs, lib, ... }:
{
services.playerctld.enable = true;
systemd.user.services.playerctld = {
Unit.PartOf = lib.mkForce [ "graphical-session.target" ];
Install.WantedBy = lib.mkForce [ "graphical-session.target" ];
};
home.packages = with pkgs; [
playerctl
];
}