Tom Hubrecht
6b827e56b1
All checks were successful
lint / check (push) Successful in 25s
build configuration / build_web02 (push) Successful in 1m4s
build configuration / build_vault01 (push) Successful in 1m6s
build configuration / build_storage01 (push) Successful in 1m13s
build configuration / build_compute01 (push) Successful in 1m25s
build configuration / build_web01 (push) Successful in 1m27s
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 = ./.;
|
|
}
|