diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-05-13 17:46:21 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-05-13 17:46:21 -0700 |
| commit | 05de7e58b18d7fa687b842303f6a79a136b6b6ef (patch) | |
| tree | 2839d921565399993ed26b36b0c83976688047e3 /modules | |
| parent | 31fa816373038e5fad807131a8526103bd005a6f (diff) | |
Add mpd and mpc
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/home/default.nix | 1 | ||||
| -rw-r--r-- | modules/home/mpd.nix | 15 |
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 + ]; +} |