infrastructure/machines/web01/wordpress/default.nix
Tom Hubrecht 8ddd33d88d
All checks were successful
build configuration / build_storage01 (push) Successful in 51s
build configuration / build_compute01 (push) Successful in 1m13s
build configuration / build_web01 (push) Successful in 2m15s
ds-fr update / npins_update (push) Successful in 1m50s
feat(wordpress): Switch to wp4nix for plugins and themes
2024-01-09 15:51:36 +01:00

35 lines
934 B
Nix

{ pkgs, sources, ... }:
let wp4nix = pkgs.callPackage sources.wp4nix { };
in {
imports = [ ./module.nix ];
services.wp-containers = {
enable = true;
sites = {
"lavoixduntexte.normalesup.eu" = {
themes = { inherit (wp4nix.themes) avant; };
plugins = { inherit (wp4nix.plugins) wordpress-importer; };
languages = [ pkgs.wordpressPackages.languages.fr_FR ];
};
"bds.wp.dgnum.eu" = {
plugins = { inherit (wp4nix.plugins) user-role-editor; };
languages = [ pkgs.wordpressPackages.languages.fr_FR ];
};
"bda.wp.dgnum.eu" = {
plugins = { inherit (wp4nix.plugins) user-role-editor; };
languages = [ pkgs.wordpressPackages.languages.fr_FR ];
};
"cineclub.wp.dgnum.eu" = {
plugins = { inherit (wp4nix.plugins) user-role-editor; };
languages = [ pkgs.wordpressPackages.languages.fr_FR ];
};
};
};
}