diff options
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 + ]; +} |