From db20a03bd0c0d4f4dbf2a48bc7d7ff7730930ae9 Mon Sep 17 00:00:00 2001 From: Andrew Benbow Date: Fri, 10 Apr 2026 15:42:50 -0400 Subject: [PATCH] nixos/drupal: change state directory modules and themes symlinks --- nixos/modules/services/web-apps/drupal.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/web-apps/drupal.nix b/nixos/modules/services/web-apps/drupal.nix index dff3450553be..3b307327a6d7 100644 --- a/nixos/modules/services/web-apps/drupal.nix +++ b/nixos/modules/services/web-apps/drupal.nix @@ -66,8 +66,8 @@ let postInstall = '' ln -s ${cfg.stateDir}/sites $out/share/php/${cfg.package.pname}${cfg.webRoot} - ln -s ${cfg.modulesDir} $out/share/php/${cfg.package.pname}/modules - ln -s ${cfg.themesDir} $out/share/php/${cfg.package.pname}/themes + ln -s ${cfg.modulesDir} $out/share/php/${cfg.package.pname}${cfg.webRoot}/modules/nixos-modules + ln -s ${cfg.themesDir} $out/share/php/${cfg.package.pname}${cfg.webRoot}/themes/nixos-themes ''; });