summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorAlan Pearce2024-11-10 18:28:18 +0100
committerAlan Pearce2024-11-10 18:28:18 +0100
commit6d545ae940ad6689c816b55248d7f6daa145cdfa (patch)
tree171fad8d0e03cf53435a6487df9ddeb9fff78288 /system
parent7da031e2c6e888b46c17a47af6bb9d7253e87a08 (diff)
downloadnixfiles-6d545ae940ad6689c816b55248d7f6daa145cdfa.tar.lz
nixfiles-6d545ae940ad6689c816b55248d7f6daa145cdfa.tar.zst
nixfiles-6d545ae940ad6689c816b55248d7f6daa145cdfa.zip
linde: specify dex service dependencies
Diffstat (limited to 'system')
-rw-r--r--system/linde.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/system/linde.nix b/system/linde.nix
index db061e6d..d44ee995 100644
--- a/system/linde.nix
+++ b/system/linde.nix
@@ -981,6 +981,11 @@ in
         ];
       };
     };
+  systemd.services.dex.unitConfig = {
+    After = [ "etcd.service" ];
+    Requires = [ "etcd.service" ];
+  };
+
 
   services.syncthing = {
     enable = true;