infrastructure/machines/web01/_configuration.nix
Tom Hubrecht 774427b20e
All checks were successful
build configuration / build_storage01 (push) Successful in 48s
build configuration / build_web01 (push) Successful in 1m0s
build configuration / build_compute01 (push) Successful in 1m11s
ds-fr update / npins_update (push) Successful in 1m58s
feat(web01): Use fail2ban
2024-01-05 17:22:15 +01:00

29 lines
415 B
Nix

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