Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion nixos/modules/services/security/kanidm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ let
defaultServiceConfig = {
# Setting the type to notify enables additional healthchecks, ensuring units
# after and requiring kanidm-* wait for it to complete startup
Type = "notify";
Type =
# notify-reload adds service reloading support.
if lib.versionAtLeast (lib.getVersion cfg.package) "1.6.0" then "notify-reload" else "notify";
BindReadOnlyPaths = [
"/nix/store"
# For healthcheck notifications
Expand Down