about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorMorgan Jones <me@numin.it>2023-12-12 18:57:50 -0800
committerMorgan Jones <me@numin.it>2023-12-12 19:25:38 -0800
commit5fd6ebdbef4b0f88831e3ca5f9c6411cba0dff3b (patch)
tree6f506b7dff984d70f9b8d7b44aa852ba0d6de551 /nixos/modules
parent987845b73e265113c1368efe4a5825fc7eed61bb (diff)
nixos/nebula: wait for start notification to prevent startup race
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/networking/nebula.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/nebula.nix b/nixos/modules/services/networking/nebula.nix
index b9ebbfbd9a297..e13876172dac6 100644
--- a/nixos/modules/services/networking/nebula.nix
+++ b/nixos/modules/services/networking/nebula.nix
@@ -196,7 +196,7 @@ in
             before = [ "sshd.service" ];
             wantedBy = [ "multi-user.target" ];
             serviceConfig = {
-              Type = "simple";
+              Type = "notify";
               Restart = "always";
               ExecStart = "${netCfg.package}/bin/nebula -config ${configFile}";
               UMask = "0027";