diff --git a/hosts/sisko/home.nix b/hosts/sisko/home.nix
index 0f2643e..4930b5c 100644
--- a/hosts/sisko/home.nix
+++ b/hosts/sisko/home.nix
@@ -1,4 +1,4 @@
-{ pkgs, lib, ... }:
+{ pkgs, lib, config, ... }:
 
 {
   imports = [
@@ -10,6 +10,7 @@
     # GUI Applications
     chromium
     discord
+    easyeffects
     element-desktop
     emacs-gtk
     papers
@@ -19,6 +20,7 @@
     mpv
     mumble
     pavucontrol
+    picard
     prismlauncher
     swayimg
     spotify
@@ -74,6 +76,7 @@
       settings.window.opacity = 0.92;
     };
     firefox.enable = true;
+    ncmpcpp.enable = true;
     neovim.plugins = with pkgs.vimPlugins; [ copilot-vim ];
     rbw = {
       enable = true;
@@ -94,6 +97,23 @@
     };
   };
 
+  services = {
+    mpd = let
+      home = config.home.homeDirectory;
+    in {
+      enable = true;
+      musicDirectory = "${home}/mnt/music";
+      dataDir = "${home}/Music/mpd/data";
+      playlistDirectory = "${home}/Music/mpd/playlists";
+      extraConfig = ''
+        audio_output {
+          type "pipewire"
+          name "PipewireOut1"
+        }
+      '';
+    };
+  };
+
   home.pointerCursor = {
     name = "Bibata-Modern-Ice";
     package = pkgs.bibata-cursors;