diff --git a/home/features/desktop/common/default.nix b/home/features/desktop/common/default.nix index bbd17ca..df9100d 100644 --- a/home/features/desktop/common/default.nix +++ b/home/features/desktop/common/default.nix @@ -2,5 +2,6 @@ imports = [ ./firefox.nix ./alacritty.nix + ./playerctl.nix ]; } diff --git a/home/features/desktop/common/playerctl.nix b/home/features/desktop/common/playerctl.nix new file mode 100644 index 0000000..97cd5e1 --- /dev/null +++ b/home/features/desktop/common/playerctl.nix @@ -0,0 +1,6 @@ +{pkgs, ...}: { + home.packages = with pkgs; [playerctl]; + services.playerctld = { + enable = true; + }; +}