infrastructure/machines/web01/wordpress/default.nix
Tom Hubrecht 38083b5fce
Some checks failed
lint / check (push) Successful in 24s
build configuration / build_vault01 (push) Successful in 56s
build configuration / build_web02 (push) Successful in 56s
build configuration / build_storage01 (push) Successful in 59s
build configuration / build_compute01 (push) Successful in 1m2s
build configuration / build_web01 (push) Has been cancelled
feat(wordpress): Deploy bda
2024-02-06 13:20:09 +01:00

50 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) 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 ];
themes = {
inherit (wp4nix.themes) gateway twentytwentythree;
};
};
"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 ];
};
};
};
}