infrastructure/machines/vault01/_configuration.nix

27 lines
406 B
Nix
Raw Normal View History

2024-01-10 15:00:18 +01:00
{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
"dgn-fail2ban"
];
enabledServices = [
# List of services to enable
"k-radius"
2024-03-27 10:26:31 +01:00
"networking"
2024-04-19 21:10:14 +02:00
"ups"
2024-01-10 15:00:18 +01:00
];
extraConfig = {
dgn-fail2ban.jails = lib.extra.enableAttrs' "enabled" [
"sshd-bruteforce"
"sshd-timeout"
];
2024-01-10 15:00:18 +01:00
services.netbird.enable = true;
};
root = ./.;
}