From 05de7e58b18d7fa687b842303f6a79a136b6b6ef Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Mon, 13 May 2024 17:46:21 -0700 Subject: Add mpd and mpc --- modules/home/default.nix | 1 + modules/home/mpd.nix | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 modules/home/mpd.nix (limited to 'modules/home') 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 + ]; +} -- cgit v1.2.3