diff options
author | bd <bdunahu@operationnull.com> | 2024-05-27 00:34:24 -0600 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-05-27 00:34:24 -0600 |
commit | b205ab6c207b0b114965604cd34684a0a2063aed (patch) | |
tree | 7f40a2d67c29438acd95b7998208c63386c0cdb2 /.config/guix/modules/mpd.scm | |
parent | 4b8fbca1b52d0428c975a1f5ec26b50830f1cc14 (diff) |
mpd config fixes
Diffstat (limited to '.config/guix/modules/mpd.scm')
-rw-r--r-- | .config/guix/modules/mpd.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.config/guix/modules/mpd.scm b/.config/guix/modules/mpd.scm index ce70dfb..3c17b3e 100644 --- a/.config/guix/modules/mpd.scm +++ b/.config/guix/modules/mpd.scm @@ -9,7 +9,13 @@ (define bd-mpd-package `(,@(map specification->package - '("mpd-mpc")))) + '( + ;; if the user can't access mpd directly, + ;; emms will fail to parse the supported + ;; file types :) + "mpd" + "mpd-mpc" + )))) (define bd-mpd-service (list |