forked from DGNum/infrastructure
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
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) user-role-editor;
|
|
};
|
|
|
|
languages = [ pkgs.wordpressPackages.languages.fr_FR ];
|
|
};
|
|
|
|
"bds.wp.dgnum.eu" = {
|
|
themes = {
|
|
inherit (wp4nix.themes) gateway twentytwentythree;
|
|
};
|
|
|
|
plugins = {
|
|
inherit (wp4nix.plugins) user-role-editor;
|
|
};
|
|
|
|
languages = [ pkgs.wordpressPackages.languages.fr_FR ];
|
|
};
|
|
|
|
"bda.ens.fr" = {
|
|
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 ];
|
|
};
|
|
};
|
|
};
|
|
}
|