diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-01-13 22:50:36 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-01-13 22:50:36 -0600 |
commit | 06fb089e54ed997410b1747ff16aa55f75c802c0 (patch) | |
tree | 7762e2ed4dfb7a9ff8d34ac681e40633c02a16d4 /macos.local/.flake/home/services/mpd.nix.org | |
parent | 5fce4b6474ffcd616aeb533a55d9729bdeac5cd9 (diff) |
system changes
Diffstat (limited to 'macos.local/.flake/home/services/mpd.nix.org')
-rw-r--r-- | macos.local/.flake/home/services/mpd.nix.org | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/macos.local/.flake/home/services/mpd.nix.org b/macos.local/.flake/home/services/mpd.nix.org index 6d9d6de..dc4131e 100644 --- a/macos.local/.flake/home/services/mpd.nix.org +++ b/macos.local/.flake/home/services/mpd.nix.org @@ -5,17 +5,17 @@ Configure =mpd= as a music player. { config, pkgs, ... }: { - services.mpd = { - enable = true; - musicDirectory = "/Volumes/Media/Music"; - extraConfig = '' + home.packages = with pkgs; [ + mpd + ]; + home.file."./.config/mpd/mpd.conf".text = '' + music_directory = "/Volumes/Media/Music"; audio_output { type "osx" name "CoreAudio" mixer_type "software" enabled "yes" } - ''; - }; + ''; } #+end_src |