From c2a910524c26ca3d3467eaa504f6321e7e938e18 Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Wed, 27 Dec 2023 22:47:58 +0100 Subject: [PATCH] Add playerctl service --- home/features/desktop/common/default.nix | 1 + home/features/desktop/common/playerctl.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 home/features/desktop/common/playerctl.nix 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; + }; +}