aboutsummaryrefslogtreecommitdiff
path: root/modules/home
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2024-05-13 17:46:21 -0700
committerCaroline Larimore <caroline@larimo.re>2024-05-13 17:46:21 -0700
commit05de7e58b18d7fa687b842303f6a79a136b6b6ef (patch)
tree2839d921565399993ed26b36b0c83976688047e3 /modules/home
parent31fa816373038e5fad807131a8526103bd005a6f (diff)
Add mpd and mpc
Diffstat (limited to 'modules/home')
-rw-r--r--modules/home/default.nix1
-rw-r--r--modules/home/mpd.nix15
2 files changed, 16 insertions, 0 deletions
diff --git a/modules/home/default.nix b/modules/home/default.nix
index 9648834..10fb742 100644
--- a/modules/home/default.nix
+++ b/modules/home/default.nix
@@ -9,6 +9,7 @@
./git.nix
./i3.nix
./kitty.nix
+ ./mpd.nix
./mpv.nix
./picom.nix
./polybar.nix
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
+ ];
+}