forked from DGNum/infrastructure
32 lines
492 B
Nix
32 lines
492 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
"dgn-backups"
|
|
"dgn-fail2ban"
|
|
"dgn-web"
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"atticd"
|
|
"forgejo"
|
|
"forgejo-runners"
|
|
"garage"
|
|
"influxdb"
|
|
"netbird"
|
|
"peertube"
|
|
"prometheus"
|
|
];
|
|
|
|
extraConfig = {
|
|
dgn-fail2ban.jails.sshd-preauth.enabled = true;
|
|
|
|
dgn-hardware.useZfs = true;
|
|
|
|
services.netbird.enable = true;
|
|
};
|
|
|
|
root = ./.;
|
|
}
|