mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
nixos/mopidy: add wants network-online.target to fix warning
This commit is contained in:
parent
8a1be53c94
commit
b064e2db69
1 changed files with 1 additions and 0 deletions
|
@ -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 a new issue