infrastructure/machines/compute01/_configuration.nix
2023-11-28 20:51:23 +01:00

34 lines
522 B
Nix

{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
"dgn-dns"
"dgn-fail2ban"
"dgn-web"
];
enabledServices = [
# List of services to enable
"ds-fr"
"hedgedoc"
"kanidm"
"mastodon"
"nextcloud"
"onlyoffice"
"outline"
"rstudio-server"
"satosa"
"vaultwarden"
"zammad"
];
extraConfig = {
dgn-fail2ban.jails = lib.extra.enableAttrs' "enabled" [
"sshd-bruteforce"
"sshd-timeout"
];
};
root = ./.;
}