diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-05-24 14:00:37 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-05-24 14:00:37 +0200 |
| commit | a74f2cdf080cb5fc4c0f0a7a14d3ccc8c2a96a35 (patch) | |
| tree | 4856c30afc6242ebfc44b25266a97e5f7459a5a5 /system | |
| parent | 13b246e4debe71b9dddbc69395a90e527a1e68c8 (diff) | |
Moved the mpd config to system services
Diffstat (limited to 'system')
| -rw-r--r-- | system/services.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/system/services.nix b/system/services.nix index 131b279..383eda9 100644 --- a/system/services.nix +++ b/system/services.nix @@ -13,5 +13,16 @@ gnome-keyring.enable = true; gcr-ssh-agent.enable = false; }; + # Setup MPD as the backend of RMPC + mpd = { + enable = true; + musicDirectory = "~/Music"; + extraConfig = '' + audio_output { + type "pipewire" + name "PipeWire" + } + ''; + }; }; } |
