about summary refs log tree commit diff
path: root/application
diff options
context:
space:
mode:
Diffstat (limited to 'application')
-rw-r--r--application/module.nix5
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;