infrastructure/machines/web01/wordpress/default.nix

37 lines
1,007 B
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 ];
2024-01-22 12:46:40 +01:00
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
};
}