diff --git a/modules/home/hyprland.nix b/modules/home/hyprland.nix
new file mode 100644
index 0000000..01b9d1e
--- /dev/null
+++ b/modules/home/hyprland.nix
@@ -0,0 +1,14 @@
+{ 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
+  ];
+}
diff --git a/modules/hyprland.nix b/modules/hyprland.nix
index 88cc132..b18499d 100644
--- a/modules/hyprland.nix
+++ b/modules/hyprland.nix
@@ -74,6 +74,8 @@ in
       pipewire-controller
     ];
 
-    home-manager.sharedModules = [ ];
+    home-manager.sharedModules = [
+      ./home/hyprland.nix
+    ];
   };
 }