From 148c1597c6cac85d240cfa9fba94e2604c7f7dc2 Mon Sep 17 00:00:00 2001 From: provokateurin Date: Wed, 3 Dec 2025 21:51:03 +0100 Subject: [PATCH] nixos/step-ca: Set systemd Type=notify step-ca supports sd_notify now: https://github.com/smallstep/certificates/pull/2463 --- nixos/modules/services/security/step-ca.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/security/step-ca.nix b/nixos/modules/services/security/step-ca.nix index 3e57180a5b28..d92900b7220b 100644 --- a/nixos/modules/services/security/step-ca.nix +++ b/nixos/modules/services/security/step-ca.nix @@ -94,6 +94,7 @@ in ConditionFileNotEmpty = ""; # override upstream }; serviceConfig = { + Type = "notify"; User = "step-ca"; Group = "step-ca"; UMask = "0077";