aboutsummaryrefslogtreecommitdiff
path: root/modules/home/mpd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/mpd.nix')
-rw-r--r--modules/home/mpd.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/home/mpd.nix b/modules/home/mpd.nix
new file mode 100644
index 0000000..38f0136
--- /dev/null
+++ b/modules/home/mpd.nix
@@ -0,0 +1,15 @@
+{ ... }:
+
+{
+ services.mpd = {
+ enable = true;
+ };
+
+ services.mpd-mpris = {
+ enable = true;
+ };
+
+ home.packages = with pkgs; [
+ mpc-cli
+ ];
+}