infrastructure/machines/web02/_configuration.nix

28 lines
482 B
Nix
Raw Normal View History

2024-01-11 12:45:01 +01:00
{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
"dgn-fail2ban"
];
enabledServices = [
# List of services to enable
];
extraConfig = {
dgn-fail2ban.jails = lib.extra.enableAttrs' "enabled" [
"sshd-bruteforce"
"sshd-timeout"
];
2024-01-11 12:45:01 +01:00
# Restrict access to this node
dgn-access-control.users.root = [ "thubrecht" ];
# Disable monitoring
dgn-node-monitoring.enable = false;
2024-01-11 12:45:01 +01:00
};
root = ./.;
}