nixos/drupal: change state directory modules and themes symlinks (#508729)

This commit is contained in:
Pol Dellaiera
2026-04-12 20:10:14 +00:00
committed by GitHub
+2 -2
View File
@@ -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
'';
});