aboutsummaryrefslogtreecommitdiff
path: root/macos.local
diff options
context:
space:
mode:
Diffstat (limited to 'macos.local')
-rw-r--r--macos.local/.flake/home/services/mpd.nix.org39
1 files changed, 37 insertions, 2 deletions
diff --git a/macos.local/.flake/home/services/mpd.nix.org b/macos.local/.flake/home/services/mpd.nix.org
index ebc58aa..cfcdb3d 100644
--- a/macos.local/.flake/home/services/mpd.nix.org
+++ b/macos.local/.flake/home/services/mpd.nix.org
@@ -6,10 +6,45 @@ Configure =mpd= as a music player.
{
home.packages = with pkgs; [
- # mpd
+ mpd
];
- home.file."./.config/mpd/mpd.conf".text = ''
+ home.file."./.mpdconf".text = ''
music_directory = "/Volumes/Media/Music";
+ playlist_directory "~/.mpd/playlists"
+ db_file "~/.mpd/mpd.db"
+ log_file "~/.mpd/mpd.log"
+ pid_file "~/.mpd/mpd.pid"
+ state_file "~/.mpd/mpdstate"
+ auto_update "yes"
+ auto_update_depth "2"
+ follow_outside_symlinks "yes"
+ follow_inside_symlinks "yes"
+
+ audio_output {
+ type "osx"
+ name "CoreAudio"
+ mixer_type "software"
+ }
+
+ decoder {
+ plugin "mp4ff"
+ enabled "no"
+ }
+
+ bind_to_address "127.0.0.1"
+ port "6600"
+ user "jjanzen"
+
+ # Visualizer
+ audio_output {
+ type "fifo"
+ name "my_fifo"
+ path "/tmp/mpd.fifo"
+ format "44100:16:2"
+ auto_resample "no"
+ use_mmap "yes"
+ }
+
audio_output {
type "osx"
name "CoreAudio"