From bd069c7295ce1cdeb98642db8867ce03ee368a12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 27 Oct 2022 15:32:30 +0200 Subject: [PATCH] vault-secrets: change action from none to reload-or-restart --- nix/modules/vault-secrets.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/modules/vault-secrets.nix b/nix/modules/vault-secrets.nix index 70091f2..3b18e17 100644 --- a/nix/modules/vault-secrets.nix +++ b/nix/modules/vault-secrets.nix @@ -57,10 +57,10 @@ in { description = "What to do if any secrets in the environment change."; type = lib.types.nullOr (lib.types.enum [ "none" - "reload" + "reload-or-restart" "restart" ]); - default = "none"; + default = "reload-or-restart"; }; template = lib.mkOption {