infrastructure/machines/web01/_configuration.nix
Tom Hubrecht 16a63b37d3
All checks were successful
build configuration / build_storage01 (push) Successful in 50s
build configuration / build_web01 (push) Successful in 57s
build configuration / build_compute01 (push) Successful in 1m19s
feat(web01): Add a hub for redirections
2023-12-18 23:25:36 +01:00

27 lines
383 B
Nix

{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
"dgn-web"
];
enabledServices = [
# List of services to enable
"castopod"
"eleves"
"metis"
"linkal"
"matterbridge"
"ntfy-sh"
"plausible"
"redirections"
"wordpress"
];
extraConfig = {
services.netbird.enable = true;
};
root = ./.;
}