diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-05-13 20:05:04 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-05-13 20:05:04 -0700 |
| commit | 7a590efd6e450fed86783c0a7d530eff74124d57 (patch) | |
| tree | 53c63e1b95c869d7eeee6eb0fa2bcd78f9a557f4 /modules/home | |
| parent | 05de7e58b18d7fa687b842303f6a79a136b6b6ef (diff) | |
Set mpd music dir
Diffstat (limited to 'modules/home')
| -rw-r--r-- | modules/home/mpd.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/home/mpd.nix b/modules/home/mpd.nix index 38f0136..46748c6 100644 --- a/modules/home/mpd.nix +++ b/modules/home/mpd.nix @@ -1,8 +1,10 @@ -{ ... }: +{ pkgs, ... }: { services.mpd = { enable = true; + + musicDirectory = "~/Music"; }; services.mpd-mpris = { |