infrastructure/machines/storage01/_configuration.nix

31 lines
459 B
Nix
Raw Normal View History

{ lib, ... }:
2023-07-18 17:00:31 +02:00
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
"dgn-fail2ban"
"dgn-web"
];
enabledServices = [
# List of services to enable
"atticd"
"forgejo"
"forgejo-runners"
2023-09-11 11:17:52 +02:00
"garage"
"netbird"
"peertube"
"prometheus"
];
extraConfig = {
dgn-fail2ban.jails.sshd-preauth.enabled = true;
dgn-hardware.useZfs = true;
2023-12-04 09:16:04 +01:00
services.netbird.enable = true;
};
root = ./.;
}