2024-01-09 15:51:36 +01:00
|
|
|
{ pkgs, sources, ... }:
|
2023-10-07 15:48:53 +02:00
|
|
|
|
2024-01-09 15:51:36 +01:00
|
|
|
let wp4nix = pkgs.callPackage sources.wp4nix { };
|
2024-01-07 10:26:47 +01:00
|
|
|
in {
|
|
|
|
imports = [ ./module.nix ];
|
2023-10-07 15:48:53 +02:00
|
|
|
|
2024-01-07 10:26:47 +01:00
|
|
|
services.wp-containers = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
sites = {
|
|
|
|
"lavoixduntexte.normalesup.eu" = {
|
2024-01-09 15:51:36 +01:00
|
|
|
themes = { inherit (wp4nix.themes) avant; };
|
2024-01-07 10:26:47 +01:00
|
|
|
|
2024-01-09 15:51:36 +01:00
|
|
|
plugins = { inherit (wp4nix.plugins) wordpress-importer; };
|
2024-01-07 10:26:47 +01:00
|
|
|
|
|
|
|
languages = [ pkgs.wordpressPackages.languages.fr_FR ];
|
|
|
|
};
|
2024-01-08 17:39:58 +01:00
|
|
|
|
|
|
|
"bds.wp.dgnum.eu" = {
|
2024-01-09 15:51:36 +01:00
|
|
|
plugins = { inherit (wp4nix.plugins) user-role-editor; };
|
2024-01-09 09:11:11 +01:00
|
|
|
languages = [ pkgs.wordpressPackages.languages.fr_FR ];
|
2024-01-22 12:46:40 +01:00
|
|
|
themes = { inherit (wp4nix.themes) gateway twentytwentythree; };
|
2024-01-09 09:11:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
"bda.wp.dgnum.eu" = {
|
2024-01-09 15:51:36 +01:00
|
|
|
plugins = { inherit (wp4nix.plugins) user-role-editor; };
|
2024-01-09 09:11:11 +01:00
|
|
|
languages = [ pkgs.wordpressPackages.languages.fr_FR ];
|
|
|
|
};
|
|
|
|
|
|
|
|
"cineclub.wp.dgnum.eu" = {
|
2024-01-09 15:51:36 +01:00
|
|
|
plugins = { inherit (wp4nix.plugins) user-role-editor; };
|
2024-01-08 17:39:58 +01:00
|
|
|
languages = [ pkgs.wordpressPackages.languages.fr_FR ];
|
|
|
|
};
|
2024-01-07 10:26:47 +01:00
|
|
|
};
|
2023-10-07 15:48:53 +02:00
|
|
|
};
|
|
|
|
}
|