mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
nixos/mopidy: add wants network-online.target to fix warning
(cherry picked from commit b064e2db69
)
This commit is contained in:
parent
fb29a558c8
commit
17913ae653
@ -78,6 +78,7 @@ in {
|
||||
systemd.services.mopidy = {
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "network-online.target" "sound.target" ];
|
||||
wants = [ "network-online.target" ];
|
||||
description = "mopidy music player daemon";
|
||||
serviceConfig = {
|
||||
ExecStart = "${mopidyEnv}/bin/mopidy --config ${concatStringsSep ":" ([mopidyConf] ++ cfg.extraConfigFiles)}";
|
||||
|
Loading…
Reference in New Issue
Block a user