infrastructure/machines/web01/wordpress/default.nix

51 lines
1.1 KiB
Nix
Raw Normal View History

{ pkgs, sources, ... }:
2023-10-07 15:48:53 +02:00
let
wp4nix = pkgs.callPackage sources.wp4nix { };
in
{
imports = [ ./module.nix ];
2023-10-07 15:48:53 +02:00
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 ];
};
2024-01-08 17:39:58 +01:00
"bds.wp.dgnum.eu" = {
plugins = {
inherit (wp4nix.plugins) user-role-editor;
};
languages = [ pkgs.wordpressPackages.languages.fr_FR ];
themes = {
inherit (wp4nix.themes) gateway twentytwentythree;
};
};
"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;
};
2024-01-08 17:39:58 +01:00
languages = [ pkgs.wordpressPackages.languages.fr_FR ];
};
};
2023-10-07 15:48:53 +02:00
};
}