nixos/wordpress: make fonts directory writable

Needed to host e.g. google fonts locally.
main
Maximilian Bosch 2 years ago
parent b463da9989
commit 5afde0064a
No known key found for this signature in database
GPG Key ID: 9A6EEA275CA5BE0A
  1. 10
      nixos/modules/services/web-apps/wordpress.nix

@ -22,6 +22,7 @@ let
ln -s ${wpConfig hostName cfg} $out/share/wordpress/wp-config.php
# symlink uploads directory
ln -s ${cfg.uploadsDir} $out/share/wordpress/wp-content/uploads
ln -s ${cfg.fontsDir} $out/share/wordpress/wp-content/fonts
# https://github.com/NixOS/nixpkgs/pull/53399
#
@ -95,6 +96,15 @@ let
'';
};
fontsDir = mkOption {
type = types.path;
default = "/var/lib/wordpress/${name}/fonts";
description = lib.mdDoc ''
This directory is used to download fonts from a remote location, e.g.
to host google fonts locally.
'';
};
plugins = mkOption {
type = types.listOf types.path;
default = [];

Loading…
Cancel
Save