diff options
| author | Jon Santmyer <jon@jonsantmyer.com> | 2026-08-29 10:27:34 -0400 |
|---|---|---|
| committer | Jon Santmyer <jon@jonsantmyer.com> | 2026-08-29 10:27:34 -0400 |
| commit | b5906d21bbe4cc15ad474397c0e08d4112057af1 (patch) | |
| tree | b770d397079b0c0e1a67836efecba89d55b2c64c /modules/desktop/apps/mpd.nix | |
| parent | 40c65ac3e6226dcf5c834c0ba2447df1bd0ca37d (diff) | |
| download | nix-config-b5906d21bbe4cc15ad474397c0e08d4112057af1.tar.gz nix-config-b5906d21bbe4cc15ad474397c0e08d4112057af1.tar.bz2 nix-config-b5906d21bbe4cc15ad474397c0e08d4112057af1.zip | |
desktop changes 2026-08-29desktop
Diffstat (limited to 'modules/desktop/apps/mpd.nix')
| -rw-r--r-- | modules/desktop/apps/mpd.nix | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/modules/desktop/apps/mpd.nix b/modules/desktop/apps/mpd.nix index 3ec86e4..f6f9ff3 100644 --- a/modules/desktop/apps/mpd.nix +++ b/modules/desktop/apps/mpd.nix @@ -23,12 +23,14 @@ in services.mpd = { enable = true; musicDirectory = "/home/jon/mus"; - extraConfig = '' -audio_output { - type "pipewire" - name "Pipewire Output" -} - ''; + settings = { + audio_output = [ + { + type = "pipewire"; + name = "Pipewire"; + } + ]; + }; user = "jon"; }; systemd.services.mpd.environment = { |
