From 6d94b3875ca2dc2bf7ef31232736cfb9a2c48a93 Mon Sep 17 00:00:00 2001 From: soraefir Date: Sun, 7 Jun 2026 22:08:35 +0200 Subject: [PATCH] fix paths --- modules/server/containers/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/server/containers/default.nix b/modules/server/containers/default.nix index e969b3a..9f77026 100644 --- a/modules/server/containers/default.nix +++ b/modules/server/containers/default.nix @@ -14,7 +14,7 @@ let lib.mapAttrs' (cName: cCfg: lib.nameValuePair "${appName}-${cName}" cCfg) app.runtime.containers ) loadedContainers; allPathConfigs = - (lib.mapAttrsToList (_: cfg: cfg) (lib.filterAttrs (name: _: name != "config") serverCfg.path)) + (lib.mapAttrsToList (_: cfg: cfg) (lib.filterAttrs (name: _: name != "config" && name != "data") serverCfg.path)) ++ concatRuntimeLists "paths"; allSetupConfigs = map (app: ({ name = app.name; envFile = ""; } // app.runtime.setup)) appsList; allCronsConfigs = concatRuntimeLists "cron";