diff options
Diffstat (limited to 'application/module.nix')
| -rw-r--r-- | application/module.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/application/module.nix b/application/module.nix index 557f421..238ec5e 100644 --- a/application/module.nix +++ b/application/module.nix @@ -51,8 +51,9 @@ in systemd.services.specimen = { description = "specimen application service"; - wantedBy = "multi-user.target"; - after = "network.target"; + wantedBy = [ "multi-user.target" ]; + wants = [ "network.target" ]; + after = [ "network.target" ]; serviceConfig = { DynamicUser = true; |
