mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
https://mpd.readthedocs.io/en/stable/client.html#connecting-to-mpd These environment variables are picked up by, amongst others, clients based on libmpdclient: -2a42a10067/src/settings.c (L108)-2a42a10067/src/settings.c (L135)
11 lines
279 B
Nix
11 lines
279 B
Nix
{ config, ... }:
|
|
{
|
|
time = "2026-01-02T00:03:48+00:00";
|
|
condition = config.services.mpd.enable;
|
|
message = ''
|
|
`MPD_HOST` and `MPD_PORT` environment variables are now set automatically.
|
|
|
|
This can be disabled with `services.mpd.enableSessionVariables = false`.
|
|
'';
|
|
}
|