forked from DGNum/infrastructure
30 lines
431 B
Nix
30 lines
431 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
"dgn-fail2ban"
|
|
"dgn-web"
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"castopod"
|
|
"crabfit"
|
|
"linkal"
|
|
"matterbridge"
|
|
"metis"
|
|
"ntfy-sh"
|
|
"plausible"
|
|
"redirections"
|
|
"static"
|
|
"wordpress"
|
|
"dolibarr"
|
|
];
|
|
|
|
extraConfig = {
|
|
services.netbird.enable = true;
|
|
};
|
|
|
|
root = ./.;
|
|
}
|