nixos/services.vault: fmt

Changed files
+5 -3
nixos
modules
services
security
+5 -3
nixos/modules/services/security/vault.nix
···
description = "Vault server daemon";
wantedBy = [ "multi-user.target" ];
-
after = [
-
"network.target"
-
] ++ lib.optional (config.services.consul.enable && cfg.storageBackend == "consul") "consul.service";
restartIfChanged = false; # do not restart on "nixos-rebuild switch". It would seal the storage and disrupt the clients.
···
description = "Vault server daemon";
wantedBy = [ "multi-user.target" ];
+
after =
+
[
+
"network.target"
+
]
+
++ lib.optional (config.services.consul.enable && cfg.storageBackend == "consul") "consul.service";
restartIfChanged = false; # do not restart on "nixos-rebuild switch". It would seal the storage and disrupt the clients.