From 5fb43260c81ac76b58e720b73c5f78511bb968a2 Mon Sep 17 00:00:00 2001 From: lew Date: Sat, 4 Apr 2026 23:58:50 +0100 Subject: [PATCH] fix: revert dokuwiki to sdnotify=conmon, image lacks healthcheck --- hosts/lab/dokuwiki.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/lab/dokuwiki.nix b/hosts/lab/dokuwiki.nix index f79e805..42f96b7 100644 --- a/hosts/lab/dokuwiki.nix +++ b/hosts/lab/dokuwiki.nix @@ -10,7 +10,6 @@ virtualisation.oci-containers.containers.dokuwiki = { image = "lscr.io/linuxserver/dokuwiki:2025-05-14b-ls299"; podman.user = "podman"; - podman.sdnotify = "healthy"; environment = { PUID = "1000"; PGID = "1000"; @@ -22,4 +21,7 @@ ]; ports = [ "127.0.0.1:8070:80" ]; }; + + # Workaround for NixOS/nixpkgs#410857 until backport of #475089 lands + systemd.services.podman-dokuwiki.serviceConfig.Delegate = true; }