diff options
| author | Mel <einebeere@gmail.com> | 2024-12-29 20:49:03 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2024-12-29 20:50:34 +0100 |
| commit | fff6a9643593941ddfbe5a6cf7a72ea95c0e597a (patch) | |
| tree | 13a2a7ea34217d660277fc7e44ea32678dfe1b04 /application/module.nix | |
| parent | af0adff6b1c3985d3047a05ce455429f021b035b (diff) | |
| download | specimen-fff6a9643593941ddfbe5a6cf7a72ea95c0e597a.tar.zst specimen-fff6a9643593941ddfbe5a6cf7a72ea95c0e597a.zip | |
Correct service targets in specimen module
Signed-off-by: Mel <einebeere@gmail.com>
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; |
