aboutsummaryrefslogtreecommitdiff
path: root/system/services.nix
diff options
context:
space:
mode:
Diffstat (limited to 'system/services.nix')
-rw-r--r--system/services.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/system/services.nix b/system/services.nix
index 131b279..383eda9 100644
--- a/system/services.nix
+++ b/system/services.nix
@@ -13,5 +13,16 @@
gnome-keyring.enable = true;
gcr-ssh-agent.enable = false;
};
+ # Setup MPD as the backend of RMPC
+ mpd = {
+ enable = true;
+ musicDirectory = "~/Music";
+ extraConfig = ''
+ audio_output {
+ type "pipewire"
+ name "PipeWire"
+ }
+ '';
+ };
};
}